1、c語言有atoi、atol、atof等庫函式,可分別把ascii編碼的字串轉化為int、long、float型別的數字。需要注意的是,這個幾個函式是c語言提供的擴充套件功能,並不是標準的函式,必須引入標頭檔案
# include
;若需要移植性,請用sscanf函式。
例如:int num=atoi(「12345」);//字串」12345」轉換為數字12345,並存入num變數中
2、sscanf函式。
sscanf函式是c語言中從乙個字串中讀進與指定格式相符的資料的函式。sscanf與scanf類似,都是用於輸入的,只是後者以螢幕(stdin)為輸入源,前者以固定字串為輸入源。使用sscanf函式可以實現字串到任意資料型別的轉換。
例如:char s=」12345」;
int n;
sscanf(s,」%d」,&n);//把字串s轉換為整形資料並存入變數n中
3、字串數字之間的轉換
(1)string --> char *
string str("ok");
char * p = str.c_str();
(2)char * -->string
char *p = "ok";
string str(p);
(3)char * -->cstring
char *p ="ok";
cstring m_str(p);
//或者
cstring m_str;
m_str.format("%s",p);
(4)cstring --> char *
cstring str("ok");
char * p = str.getbuffer(0);
...str.releasebuffer();
(5)string
--> cstring
cstring.format("%s", string.c_str());
(6)cstring --> string
string s(cstring.getbuffer(0));
getbuffer()後一定要releasebuffer(),否則就沒有釋放緩衝區所佔的空間,cstring物件不能動態增長了。
(7)double/float->cstring
double data;
cstring.format("%.2f",data); //保留2位小數
(8)cstring->double
cstring s="123.12";
double d=atof(s);
(9)string->double
//c_str函式的返回值是const char*的,atof不能直接賦值給char*,所以就需要我們進行相應的操作轉化,下面就是這一轉化過程
double d=atof(s.c_str());
4、數字轉字串:使用sprintf()函式
char
str[10];
int a=1234321;
sprintf(str,"%d",a);
char
str[10];
double a=123.321;
sprintf(str,"%.3lf",a);
char
str[10];
int a=175;
sprintf(str,"%x",a);//10進製轉換成16進製制
char itoa(int value, char string, int radix);4、使用stringstream類,必須使用
#include
用ostringstream物件寫乙個字串,類似於sprintf()
ostringstream s1;
int i = 22;
s1 << "hello "
<< i << endl;
string s2 = s1.str();
cout
<< s2;
用istringstream物件讀乙個字串,類似於sscanf()
istringstream stream1;
string string1 = "25";
stream1.str(string1);
int i;
stream1 >> i;
cout
<< i << endl; // displays 25
實現 atoi,將字串轉為整數。
實現atoi,將字串轉為整數。在找到第乙個非空字元之前,需要移除掉字串中的空格字元。如果第乙個非空字元是正號或負號,選取該符號,並將其與後面盡可能多的連續的數字組合起來,這部分字元即為整數的值。如果第乙個非空字元是數字,則直接將其與之後連續的數字字元組合起來,形成整數。字串可以在形成整數的字元後面包...
將整數數字字串轉為整數值
給定乙個字串s,如果s符合日常書寫的整數形式,並屬於32位整數的範圍,返回s代表的整數,否則返回0.例如 首先檢查s是不是日常書寫形式的整數 def check s if s is none orlen s 0 return false ifnot s 0 isdigit and s 0 retur...
把字串轉為整數
方案一 int stringtoint1 char string 此 就是大多數人能想到的,但這個 無法完成較為複雜的字串轉換,比如有字母巢狀是輸出的就是隨機值,另外沒有檢查字串是否是空指標,return number 方案二 int stringtoint2 char string 次 雖然解決空...