I am trying to send a command that contains file path information in an NSString. The problem I am having is that backslashes used in my string are interpreted as unknown escape characters.
Here is the line:
[myNetwork sendCommand:@”MMEM:STOR:DATA \”INT:\sum_sin.arb\”\n”];
I am receiving warnings about unknown escape commands \s
Does anyone know of a work around?
Thanks,
Hayden
Have you tried
\as escape character, so\\for\and\"for".