Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须在我的 nsstring 中写入“\\\”。我试过@"\\\" 但效果不好。你能帮助我吗?谢谢。
你试过了@"\\\\\\"吗?您需要使用另一个斜杠来转义每个斜杠,因为在换行\等序列中用作转义字符。\n
@"\\\\\\"
\
\n
双反斜杠。每个都是一个转义字符,所以要写一个\你必须写一个\\。
\\
您需要转义每个单独的反斜杠。@"\\\\\\" 在上面的代码中使用。这将逃避每个单独的反斜杠。
如果你想要三个\,你必须将它乘以to。所以六\