Linux下C語言字符串操作之字符串轉數值型


1,字符串轉整型(一)
#include <stdlib.h>
int atoi(const char *nptr);
字符串轉化為整型
long atol(const char *nptr);
字符串轉化為長整型
long long atoll(const char *nptr);
long long atoq(const char *nptr);
字符串轉化為long long 類型
英文手冊很簡單,直接上
說明:The atoi() function converts the initial portion of the string pointed to by nptr to int.  The behavior is the same as strtol(nptr, (char **) NULL, 10); except that atoi() does not detect errors. The  atol() and atoll() functions behave the same as atoi(), except that they convert the initial portion of the string to their return type of long or long long.  atoq() is an obsolete name for atoll().

2,字符串轉整型(二)
#include <stdlib.h>
long int strtol(const char *nptr, char **endptr, int base);
字符串轉長整型,base參數為進制,如轉化為10進制,則base應該為10
long long int strtoll(const char *nptr, char **endptr, int base);
字符串轉化為long long int
說明:詳細說明請參考man手冊。

3,字符串轉浮點數
#include <stdlib.h>
double strtod(const char *nptr, char **endptr);
字符串轉 雙精度浮點數 double 類型
float strtof(const char *nptr, char **endptr);
字符串轉 單精度浮點數 float 類型
long double strtold(const char *nptr, char **endptr);
字符串轉 long double 類型

有了以上庫函數,可以很方便的把字符串轉化為數值型,真系灰常的方便啊,有木有?

示例代碼:

#include <stdio.h>
#include <stdlib.h>
int main()

{

  char *str_int="892";
  int int_val=atoi(str_int);
  printf("字符串轉整型:%d\n",int_val);
  long long_val=atol(str_int);
  printf("字符串轉長整型:%ld\n",long_val);
  char *str_float="238.23";
  char *endptr;
  float float_val=strtof(str_float,&endptr);
  printf("字符串轉單精度浮點型:%f\n",float_val);
  double double_val=strtod(str_float,&endptr);
  printf("字符串轉雙精度浮點型:%f\n",double_val);
  char *str_long="9839282";
  int base=10;
  long long_v=strtol(str_long,&endptr,base);
  printf("strtol : %ld\n",long_v);
  return 0;
}

代碼輸出:

  1. 字符串轉整型:892
  2. 字符串轉長整型:892
  3. 字符串轉單精度浮點型:238.229996
  4. 字符串轉雙精度浮點型:238.230000
  5. strtol : 9839282


說明:以上各函數的man手冊都有詳盡的解釋,詳情請查閱man手冊。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM