How to assign string containing " "

Hey i want to store strings that contains double quotes eg:

"Firefox.exe -P “Test” "

Couldn’t find on forums. I hope it makes sense?

Thanks!

@Munish_Jain
have a look here:
grafik

YourStringVar = "Firefox.exe -P ""Test"""

I assumed this won’t work because the colour changes. This is what I thought originally.

Thanks!

Haven’t tested yet

you can directly store it like below.

“Firefox.exe -P ““Test”””

best way to store it with concatenation which will be easy to you to understand input like below

assign variable=“Firefox.exe -P” + “Test”

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.