Escaping characters etc.


#1

Hey there when building commands to interact with command line on the OS…
Are there any tricks of the trade to convert commands into executable escaped character strings etc.

ie. go from this command
system(“start “C:/Program Files (x86)/Autodesk/Backburner/server.exe””);

to this string [to go into a UI button]
"system(“start \“C:/Program Files (x86)/Autodesk/Backburner/server.exe\””); "

Basically are there any shortcuts or do people use find and replace usually etc ?

Thanks a lot
A