描述
C庫函數unsigned long int strtoul(const char *str, char **endptr, int base)函數將字符串的初始部分轉換為str根據給定的 unsigned long int 值base,必須介於 2 和 36 之間(包括 2 和 36),或者是特殊值 0。
聲明
以下是 strtoul() 函數的聲明。
unsigned long int strtoul(const char *str, char **endptr, int base)
參數
str- 這是包含無符號整數表示的字符串。
endptr- 這是對 char* 類型對象的引用,其值由函數設置為 str 中數值之後的下一個字符。
base- 這是基數,必須在 2 到 36 之間(包括 2 和 36),或者是特殊值 0。
返回值
此函數將轉換後的整數作為 long int 值返回。如果無法執行有效轉換,則返回零值。
示例
下麵的例子展示了 strtoul() 函數的用法。
#include <stdio.h>
#include <stdlib.h>
int main () {
char str[30] = "2030300 This is test";
char *ptr;
long ret;
ret = strtoul(str, &ptr, 10);
printf("The number(unsigned long integer) is %lu\n", ret);
printf("String part is |%s|", ptr);
return(0);
}
讓我們編譯並運行上麵的程序,將產生以下結果 -
The number(unsigned long integer) is 2030300 String part is | This is test|
相關用法
- C語言 strtol()用法及代碼示例
- C語言 strtok()用法及代碼示例
- C語言 strtod()用法及代碼示例
- C語言 strtok()、strtok_r()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 strrchr()用法及代碼示例
- C語言 strftime()用法及代碼示例
- C語言 strncat()用法及代碼示例
- C語言 strupr()用法及代碼示例
- C語言 strlen()用法及代碼示例
- C語言 strspn()用法及代碼示例
- C語言 strstr()用法及代碼示例
- C語言 strcat()用法及代碼示例
- C語言 strxfrm()用法及代碼示例
- C語言 strchr()用法及代碼示例
- C語言 strrev()用法及代碼示例
- C語言 strcmpi()用法及代碼示例
- C語言 strerror()用法及代碼示例
- C語言 strpbrk()用法及代碼示例
- C語言 strnset()用法及代碼示例
注:本文由純淨天空篩選整理自 C library function - strtoul()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。