Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
834 views
in Technique[技术] by (71.8m points)

c - How can you split such complex strings

INPUT :

A string in c that looks like this : " 12345 computer seince 101"

OUTPUT:

NUMBER OF COURSE = "12345"

NAME OF COURSE = "computer seince 101"

i need to ignore all spacebars before the number and the name, so strings like : "(spaces)12345(more spaces)computer sience 101" are allowded

i tried messing around with strtok, but i failed


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Use strtol() function.

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

int main () {
   char str[30] = " 12345 computer science 101";
   char *ptr;
   long ret;

   ret = strtol(str, &ptr, 10);
   printf("NUMBER OF COURSE %ld
", ret);
   printf("NAME OF COURSE %s", ptr);

   return(0);
}

The output is:

NUMBER OF COURSE 12345
NAME OF COURSE  computer science 101

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...