C语言截取一个字符串逗号之后的内容
时间: 2024-05-08 14:17:32 浏览: 126
C语言实现字符串截取
4星 · 用户满意度95%
可以使用strchr函数找到第一个逗号的位置,然后再从该位置往后截取字符串。具体代码如下:
```c
char str[] = "hello,world";
char *pos = strchr(str, ',');
if (pos != NULL) {
printf("%s\n", pos + 1);
}
```
输出结果为:"world"。
阅读全文