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}。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。