在C語言中,可以使用標準庫函數atoi
、atof
或sscanf
將字符串轉換為數字。
atoi
函數將字符串轉換為整數:#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "12345";
int num = atoi(str);
printf("The converted number is: %d\n", num);
return 0;
}
atof
函數將字符串轉換為浮點數:#include <stdio.h>
#include <stdlib.h>
int main() {
char str[] = "3.14";
float num = atof(str);
printf("The converted number is: %.2f\n", num);
return 0;
}
sscanf
函數從字符串中提取數字:#include <stdio.h>
int main() {
char str[] = "The price is $12.50";
float price;
sscanf(str, "The price is $%f", &price);
printf("The converted number is: %.2f\n", price);
return 0;
}
以上示例中,分別使用atoi
、atof
和sscanf
將字符串轉換為整數、浮點數和提取指定格式的數字。