Skip to content

Commit

Permalink
Update string.md (#194)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhouYong10 authored Jun 26, 2024
1 parent 63d0d5f commit 0cb07db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conversion/string.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ fn main() {

## 解析字符串

我们经常需要把字符串转成数字。完成这项工作的标准手段是用 [`parse`] 函数。我们得提供要转换到的类型,这可以通过不使用类型推断,或者用 “涡轮鱼” 语法(turbo fish,`<>`)实现。
我们经常需要把字符串转成数字。完成这项工作的标准手段是用 [`parse`] 函数。我们得提供要转换到的类型,这可以通过使用类型推断,或者用 “涡轮鱼” 语法(turbo fish,`<>`)实现。

只要对目标类型实现了 [`FromStr`] trait,就可以用 `parse` 把字符串转换成目标类型。
标准库中已经给无数种类型实现了 `FromStr`。如果要转换到用户定义类型,只要手动实现
Expand Down

0 comments on commit 0cb07db

Please sign in to comment.