DrDan
26th April 2007 10:54 UTC
Complete list of characters that need to be escaped?
Hi,
I can't seem to find that full list of characters that need to be escaped in strings.
So far I have found the following in the NSIS documentation and NSIS wiki page:
` -> $\`
$ -> $$
\n -> $\n
\t -> $\t
\r -> $\r
Are there any others? And how you escape them?
Comm@nder21
26th April 2007 16:14 UTC
Are there any others? And how you escape them?
afaik there are no more.
the ones above are the only ones mentioned in the docs and thus i guess they are the only ones.
Anders
26th April 2007 16:40 UTC
$\"
DrDan
26th April 2007 17:27 UTC
What about the following characters?
: * ? < > |
I am asking because I need to test that a certain string does not contain any of there characters.
Comm@nder21
27th April 2007 16:40 UTC
they can be used without beeing escaped afaik.
i know for sure for : = < > |