strtoi(base)
strtoi()所属R语言包:base
Convert Strings to Integers
字符串转换为整数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Convert strings to integers according to the given base using the C function strtol, or choose a suitable base following the C rules.
字符串转换为整数,根据给定的基础上使用C函数strtol,或选择一个合适的基地后,C规则。
用法----------Usage----------
参数----------Arguments----------
参数:x
a character vector, or something coercible to this by as.character.
一个字符向量,或东西as.character这个强制转换。
参数:base
an integer which is between 2 and 36 inclusive, or zero (default).
一个整数,这是2和36之间的包容性,或零(默认值)。
Details
详情----------Details----------
Conversion is based on the C library function strtol.
转换是基于C库函数strtol。
For the default base = 0L, the base chosen from the string representation of that element of x, so different elements can have different bases (see the first example). The standard C rules for choosing the base are that octal constants (prefix 0 not followed by x or X) and hexadecimal constants (prefix 0x or 0X) are interpreted as base 8 and 16; all other strings are interpreted as base 10.
对于默认base = 0L,选择从该元素的字符串表示形式的基地x,所以不同的元素都可以有不同的基地(见第一个例子)。基地选择标准C规则是八进制常数(前缀0不x或X)和十六进制常量(前缀0x或0X )被解释为基础8和16;其他所有字符串被解释为基地10。
For a base greater than 10, letters a to z (or A to Z) are used to represent 10 to 35.
比10,字母为基础az(AZ)用来表示10<X >
值----------Value----------
An integer vector of the same length as x. Values which cannot be interpreted as integers or would overflow are returned as NA_integer_.
一个x相同长度的整数向量。不能被解释为整数,或将溢出的值返回NA_integer_。
参见----------See Also----------
For decimal strings as.integer is equally useful.
对于十进制as.integer同样是有用的。
举例----------Examples----------
strtoi(c("0xff", "077", "123"))
strtoi(c("ffff", "FFFF"), 16L)
strtoi(c("177", "377"), 8L)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|