i seem to bee having a problem formatting this correctly. how can i use escape slashes to make this one string with special characters?
Udp.write("abcdefgh /a \blah\blah\blah /l a /a /p "A*!=$!" /a /a /a /a");
i seem to bee having a problem formatting this correctly. how can i use escape slashes to make this one string with special characters?
Udp.write("abcdefgh /a \blah\blah\blah /l a /a /p "A*!=$!" /a /a /a /a");
Udp.write("abcdefgh /a \\blah\\blah\\blah /l a /a /p \"A*!=$!\" /a /a /a /a");
westfw:
Udp.write("abcdefgh /a \\blah\\blah\\blah /l a /a /p \"A*!=$!\" /a /a /a /a");
thankyou!
(the key is that only SOME of the "special" characters need to be escaped. The quotes, and backslash itself. Unlike SOME quoting mechanisms, you can't quote characters that don't need to be quoted.)