填空题

字符串解析

发布于 2022-03-03 17:06:34

以下函数解析字符串str是否合法的C语言字符串字面值定义(不考虑八进制和十六进制字符编码),如果是,则将解码后的内容保存到buf中,并返回0,否则返回-1。比如,"hello \"sangfor\""解码后结果为hello "sangfor",请完成该函数代码:

int unescape_c_quoted(char *buf, const char *str)
{

}
框架代码:

int main()
{
    char str[10000]
    char buf[10000]
    int len
    int ret

    if (fgets(str, sizeof(str), stdin) == NULL) {
        fprintf(stderr, "input error\n")
        return 0
    }
    len = strlen(str)
    while (len > 0 && isspace(str[len - 1])) {
        str[len - 1] = '\0'
        --len
    }

    ret = unescape_c_quoted(buf, str)
    if (ret < 0)
        printf("error\n")
    else
        printf("%s\n", buf)
    fprintf(stderr, "input:%s\noutput:%s\n", str, buf)
    return 0
}
输入描述: 字符串输入样例: "\"hello world\\n\\\"too\"" 输出描述: 解码后的字符串输出样例 "hello world\n\"too"
关注者
0
被浏览
33
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看