C 速查手冊

11.4.4 strtol()

stdlib.h函數 (function) strtol() 接受字串 (string) 當作參數 (parameter) ,將字串中的數字轉換為 long 型態的整數,其餘非數字部份以另一指標儲存位址。另有第三個參數指定轉換的基底,若代入 0 ,表示基底為 81016

以下程式利用函數 strtol() 擷取字串中的所有數字,然後計算出結果

#include <stdlib.h>
#include <ctype.h>
#include <stdio.h>

int main(void)
{
    char *test = "the answer is 33.23mm + 25mm";
    char *endPtr = test;
    long sum = 0;
    
    while (*test) {
        sum += strtol(test, &endPtr, 0);
        test = endPtr;
        
        while (!isdigit(*test) && *test) {
            test++;
        }
    }
    
    printf("the answer is %d mm\n", sum);

    return 0;
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:cstrtol.c
    功能:示範 stdlib.h 中函數 strtol() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc cstrtol.c
$ a.out
the answer is 81 mm
$

上一頁 11.4.3 strtod()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.4.5 bsearch()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁