Archive: How to include double quotes


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


Either use \$" with newer versions of NSIS or replace:

Push "${This}"
with
Push `${This}`

Is it not $\" rather than \$"?

-Stu


Yes, you are correct Afrow UK. It's $\".