在字符串末尾打印反斜杠(\)

时间:2020-03-25 09:12:49

标签: javascript php

我想在末尾打印包含反斜杠的字符串。

echo "test\";
echo "test\\";

我希望o / p一样。

test\
test\\

但在第一种情况下,我会得到

Syntax error, unexpected end of file

在第二种情况下,我的成绩低于预期。

test\ 

请帮助我达到预期的目标。 谢谢

1 个答案:

答案 0 :(得分:0)

\是“转义字符”。这意味着特殊字符(例如“;:....”)将被解释为通常的 string

echo "hello" // -> hello
echo "hello\"" // -> hello"
echo "hello\\" // -> hello\

您可以在此处了解更多信息:Escaping Strings in JavaScript