gpt4 book ai didi

c - 我如何在 C 中拆分包含 ;s 的 txt 文件?

转载 作者:太空宇宙 更新时间:2023-11-04 01:38:25 24 4
gpt4 key购买 nike

我想拆分这个 txt 文件。我怎样才能把它从分号中分离出来?它必须在 C 中。

x.txt:

stack;can;3232112233;asdasdasdasd

结果

string[0]=stack
string[1]=can

等等

最佳答案

看这个例子:

#include <stdio.h>
#include <string.h>

int main(void) {

int j, i=0; // used to iterate through array

char userInput[81], *token[80]; //user input and array to hold max possible tokens, aka 80.

printf("Enter a line of text to be tokenized: ");
fgets(userInput, sizeof(userInput), stdin);

token[0] = strtok(userInput, ";"); //get pointer to first token found and store in 0
//place in array
while(token[i]!= NULL) { //ensure a pointer was found
i++;
token[i] = strtok(NULL, " "); //continue to tokenize the string
}

for(j = 0; j <= i-1; j++) {
printf("%s\n", token[j]); //print out all of the tokens
}

return 0;
}

关于c - 我如何在 C 中拆分包含 ;s 的 txt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10271005/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com