to_float(String) -> {Float, Rest} | {error, Reason}
类型:
String = unicode:chardata()
Float = float()
Rest = unicode:chardata()
Reason = no_float | badarg
参数 String
预计以表示浮点数的有效文本开头(数字是 ASCII 值)。字符串中浮点数之后的剩余字符在 Rest
中返回。
例子:
> {F1,Fs} = string:to_float("1.0-1.0e-1"),
> {F2,[]} = string:to_float(Fs),
> F1+F2.
0.9
> string:to_float("3/2=1.5").
{error,no_float}
> string:to_float("-1.5eX").
{-1.5,"eX"}
相关用法
- erlang to_list(Q :: queue(Item))用法及代码示例
- erlang to_list(MapOrIterator)用法及代码示例
- erlang to_integer(String)用法及代码示例
- erlang to_graphemes(String :: unicode:chardata())用法及代码示例
- erlang to_map(List)用法及代码示例
- erlang tokens(String, SeparatorList)用法及代码示例
- erlang tan用法及代码示例
- erlang tuple_to_list用法及代码示例
- erlang term_to_binary用法及代码示例
- erlang table(Table)用法及代码示例
- erlang term_to_binary(Term)用法及代码示例
- erlang throw(Any)用法及代码示例
- erlang time()用法及代码示例
- erlang timestamp()用法及代码示例
- erlang tl(List)用法及代码示例
- erlang trace_pattern(MFA :: send, MatchSpec, FlagList :: [])用法及代码示例
- erlang trace_pattern(MFA :: 'receive', MatchSpec, FlagList :: [])用法及代码示例
- erlang trunc(Number)用法及代码示例
- erlang tuple_size(Tuple)用法及代码示例
- erlang tuple_to_list(Tuple)用法及代码示例
- erlang take(Key, Orddict)用法及代码示例
- erlang table(Name)用法及代码示例
- erlang traverse(Name, Fun)用法及代码示例
- erlang take(Key, Map1)用法及代码示例
- erlang take(String, Characters)用法及代码示例
注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 to_float(String) -> {Float, Rest} | {error, Reason}。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。