char a[14] = "Hello,World!"; char *b[2]; b[0] = strtok(a,","); b[1] = strtok(NULL,");
我想要这个不分割字符串,因为逗号和W之间没有空格.有没有办法呢?
substr