Posted by
admin on Aug 27th, 2009 in
Everyday News |
Comments Off
If you need to include single quotes inside a single quoted string you might try adding a backslash like most programming languages but that doesn’t work.
In the end the actual “escaping” is: ‘”‘”‘ (five quotes).
To make sure you get it ‘ ” ‘ ” ‘ without the spaces.
To take it apart:
* The first single quote ends the current single...