gpt4 book ai didi

c - 使用转义键进行字符串操作

转载 作者:行者123 更新时间:2023-11-30 20:40:00 26 4
gpt4 key购买 nike

我正在尝试找出一种将给定字符串操作为特殊字符的方法。

例如 - 给出的字符串:"\\n"

我想得到:

// manipulations should take place here

"\n"

有什么“聪明”的方法可以做到这一点吗?

干杯。

最佳答案

    int i, j = 0;
for(i = 0; i < strlen(str); i++){

if(str[i] == '\\' && str[i+1] == '\\')
i++;

str[j] = str[i];
j++;

}
str[j] = '\0';

关于c - 使用转义键进行字符串操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24914528/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com