我需要这个简单的拆分
Item one, Item2, Item no. 3,Item 4
>
Item one
Item2
Item no.3
Item 4
我真的需要这里的正则表达式,还是有任何有效的简短方法来编码?
怎么样:
char inputStr[] = "Item one, Item2, Item no. 3,Item 4";
char* buffer;
buffer = strtok (inputStr, ",");
while (buffer) {
printf ("%s\n", buffer); // process token
buffer = strtok (NULL, ",");
while (buffer && *buffer == '\040')
buffer++;
}
输出:
Item one
Item2
Item no. 3
Item 4
您可以逐步查找字符串,或 0x00 并将 any 替换为 0x00,然后跳过任何空格以查找下一个字符串的开头。正则表达式要容易得多。