寻找工具将unescape字符串转换为转义字符串

时间:2010-06-08 09:40:33

标签: javascript c++

我只是徘徊在哪里可以找到一个工具,其中包含我的案例java脚本字符串 unescape并将其转换为转义字符串,以便我可以将其用作c ++中的字符串值

例如“我需要将其转换为\”字符 我需要一些聪明的东西而不仅仅是替换所有功能。

2 个答案:

答案 0 :(得分:5)

Notepad++会做得很好。

菜单TextFX> TextFX Characters> Escape... alt text http://i46.tinypic.com/98dkht.png

答案 1 :(得分:0)

类似于C的伪代码:

while(got_input_data)
{
    char = getFirstChar();
    if(char == '\"')
    {
        putchar('\');
        putchar('\"');
    }
    else if( another character that must be escaped )
    {
        // do similar stuff
    }
    else
    {
        // simply print the char that doesn't need to be escaped
        putchar(char);
    }
}

我不知道是否存在这样的工具,但我必须承认,当我需要将一个html页面作为一个字符串放在一个用C语言编写的CGI中时,我写了类似的东西。过去......