dadbhawala
16th February 2006 19:08 UTC
How to include double quotes
${ReplaceBetween} 'dir("' "test.xla" `"$R0XlStart\` "$INSTDIR\testfile.wsf"
I am trying to call this function.
NSIS 1.9 doesn't accept the extra double quotes I want to pass with the first param 'dir("'
Please help
Dharmesh
kichik
19th February 2006 19:35 UTC
Either use \$" with newer versions of NSIS or replace:
Push "${This}"
with
Push `${This}`
Afrow UK
20th February 2006 11:32 UTC
Is it not $\" rather than \$"?
-Stu
kichik
21st February 2006 19:18 UTC
Yes, you are correct Afrow UK. It's $\".