gpt4 book ai didi

c++ - 在运行时使用 C++ 使用转义序列

转载 作者:行者123 更新时间:2023-11-30 03:59:37 24 4
gpt4 key购买 nike

我是 C++ 的新手,我需要从 MSVC++ 文本字段读取输入并将其写入文件。我需要将 \n 作为文件的新行而不是 \n

经过一些研究,我发现转义字符只在编译时有效。我可以在运行时使用它吗?我只使用 C++ 来完成这项任务。

最佳答案

如果我今天用 C++ 写这个,我可能会写得有点不同(我大约 20 年前用 C 写的),但它至少可以提供一点灵感:

/*
** Public Domain by Jerry Coffin.
**
** Interprets a string in a manner similar to that the compiler
** does string literals in a program. All escape sequences are
** longer than their translated equivalant, so the string is
** translated in place and either remains the same length or
** becomes shorter.
*/

#include <string.h>
#include <stdio.h>
#include "snip_str.h"

char *translate(char *string)
{
char *here=string;
size_t len=strlen(string);
int num;
int numlen;

while (NULL!=(here=strchr(here,'\\')))
{
numlen=1;
switch (here[1])
{
case '\\':
break;

case 'r':
*here = '\r';
break;

case 'n':
*here = '\n';
break;

case 't':
*here = '\t';
break;

case 'v':
*here = '\v';
break;

case 'a':
*here = '\a';
break;

case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
numlen = sscanf(here,"%o",&num);
*here = (char)num;
break;

case 'x':
numlen = sscanf(here,"%x",&num);
*here = (char) num;
break;
}
num = here - string + numlen;
here++;
memmove(here,here+numlen,len-num );
}
return string;
}

关于c++ - 在运行时使用 C++ 使用转义序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26837290/

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