如何在第一个空格处分割字符串

时间:2018-05-08 15:47:14

标签: c string split

我有一串这样的数字:  160 01 11 12 33 44 44 ...... 我想从头开始分割到第一个空间,如下所示: 160 | 01 11 12 33 44 44 .... 例如,我可以将字符串放在数组中的第一个空格之前,将字符串放在其他数组之后。

ARR1 [] =' 160'

arr2 [] =' 01 11 12 33 44 44 ...'

我从文件中提取这种类型的字符串,所以我的代码是这样的:

int le_ficheiro(char* filename) {
FILE *ficheiro=fopen(filename,"r");
size_t len=0;
char *line=NULL;
ssize_t read;
if(ficheiro==NULL) {
    exit(EXIT_FAILURE);
}



while((read = getline (&line, &len,ficheiro))!=-1)   //read line by line
{
    printf("Retrieved line of length %zu:\n",read);
    printf("%s\n",line);
    printf("Aqui : %c\n",line[0]);

}
fclose(ficheiro);
if(line)
    free(line);
exit(EXIT_SUCCESS);

我需要一些帮助才能做到这一点。

2 个答案:

答案 0 :(得分:2)

您可以使用strtok拆分字符串。这是man page

在这种特定情况下,找到第一个空格并分裂就足够了。

char *s1;
char *s2;
char *sp;

sp = strchr(line, ' ');
if (!sp) { exit(EXIT_FAILURE); }

s1 = strndup(line, sp-line); /* Copy chars until space */
s2 = sp+1; /* Skip the space */

...

free(s1);

答案 1 :(得分:0)

const char* str;
char first[5] ,rest[50]; 
sscanf(str, "%d %s", first,rest);
int first_i = atoi(first);

double first_d = atof(first);

这也应该有用。