to_integer(String) -> {Int, Rest} | {error, Reason}
类型:
String = unicode:chardata()
Int = integer()
Rest = unicode:chardata()
Reason = no_integer | badarg
参数 String
应该以表示整数的有效文本开头(数字是 ASCII 值)。字符串中整数之后的剩余字符在 Rest
中返回。
例子:
> {I1,Is} = string:to_integer("33+22"),
> {I2,[]} = string:to_integer(Is),
> I1-I2.
11
> string:to_integer("0.5").
{0,".5"}
> string:to_integer("x=2").
{error,no_integer}
相关用法
- erlang to_list(Q :: queue(Item))用法及代码示例
- erlang to_list(MapOrIterator)用法及代码示例
- erlang to_float(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_integer(String) -> {Int, Rest} | {error, Reason}。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。