使用 C++ 在运行时使用转义序列
Posted
技术标签:
【中文标题】使用 C++ 在运行时使用转义序列【英文标题】:Using escape sequence at runtime with C++ 【发布时间】:2014-11-10 05:24:21 【问题描述】:我对 C++ 很陌生,我需要从 MSVC++ 文本字段中读取输入并将其写入文件。我需要将\n
作为新行写入文件,而不是\n
。
经过一番研究,我发现转义字符只在编译时起作用。我可以在运行时使用它吗?我只使用 C++ 来完成这项任务。
【问题讨论】:
在加载文本时只查找该字符序列,并将其替换为换行符。 【参考方案1】:如果我今天用 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++ 在运行时使用转义序列的主要内容,如果未能解决你的问题,请参考以下文章
Shell脚本:转义序列字符在检索带有转义序列的变量值时如何表现?
url中的双转义序列:请求过滤模块配置为拒绝包含双转义序列的请求