Quote Originally Posted by laserlight View Post
Basically, you are asking how to escape the double quote within a string literal? If so, then the answer is that you should escape it by prepending a backslash, e.g., ", \n\r\t\\".
Nice.

did like this " \n\r\\"\" and worked like a charm.

Thankyou laserLight.