如何在Java字符串中添加转义字符?

如果我有一个字符串变量:

String example = "Hello, I'm here";

我想在每一个前面加一个转义字符'" (即 竟逃脱字符),我该怎么做?

回答:

我不是在这里要求优雅,但我 认为 它可以满足您的要求(如果我误会了,请纠正我):

public static void main(String[] args)

{

String example = "Hello, I'm\" here";

example = example.replaceAll("'", "\\\\'");

example = example.replaceAll("\"", "\\\\\"");

System.out.println(example);

}

输出

Hello, I\'m\" here

以上是 如何在Java字符串中添加转义字符? 的全部内容, 来源链接: utcz.com/qa/433752.html

回到顶部