0.摘要
本文介绍c语言中的atoi函数功能,并使用python3实现。
1.atoi()函数
atoi (表示 ascii to integer)是把字符串转换成整型数的一个函数。
函数定义形式:int atoi(const char *nptr);
函数会扫描参数 nptr字符串,跳过前面的空白字符(例如空格,tab缩进),直到遇上数字或正负符号才开始做转换;
在遇到非数字或字符串结束符('\0')结束转换,并将结果返回;
如果 nptr不能转换成 int 或者 nptr为空字符串,那么将返回 0 。
2.python3代码
代码要解决三个主要问题:
- 字符串前有空白字符;
- ‘+’,‘-’ 处理问题;
- 浮点数问题;
首先,python的中的int()函数和float()函数功能可以说是非常强大,已经考虑了空白字符、正负号等问题。
s0 = "123.456"
s1 = "+123.456 "
s2 = " -123.456"
s3 = " -123 "
print(float(s0))
print(float(s1))
print(int(float(s2)))
print(int(s3)