所以我有一根这样的绳子:

char numbers[] = "123,125,10000000,22222222222]"

这是一个例子,数组中可以有更多的数字,但它肯定以a结尾。
所以现在我需要把它转换成一个无符号的长long数组。
我知道我可以使用strtoull(),但它需要3个参数,我不知道如何使用第二个参数。我也想知道如何使我的数组具有正确的长度。我想让我的代码看起来像这样,但不是伪代码而是C:
char numbers[] // string of numbers seperated by , and at the end ]
unsigned long long arr[length] // get the correct length
for(int i = 0; i < length; i++){
    arr[i]=strtoull(numbers,???,10)// pass correct arguments
}

在C语言中这样做可能吗?

最佳答案

strtoull的第二个参数是指向char *的指针,该指针将接收指向字符串参数中数字后面第一个字符的指针。第三个参数是用于转换的基。基0允许0x前缀指定十六进制转换,允许0前缀指定八进制,就像C整型文本一样。
你可以这样分析你的行:

extern char numbers[]; // string of numbers separated by , and at the end ]
unsigned long long arr[length] // get the correct length
char *p = numbers;
int i;
for (i = 0; i < length; i++) {
    char *endp;
    if (*p == ']') {
        /* end of the list */
        break;
    }
    errno = 0;  // clear errno
    arr[i] = strtoull(p, &endp, 10);
    if (endp == p) {
        /* number cannot be converted.
           return value was zero
           you might want to report this error
        */
        break;
    }
    if (errno != 0) {
        /* overflow detected during conversion.
           value was limited to ULLONG_MAX.
           you could report this as well.
         */
         break;
    }
    if (*p == ',') {
        /* skip the delimiter */
        p++;
    }
}
// i is the count of numbers that were successfully parsed,
//   which can be less than len

08-27 20:02