- or download this
print 'that\'s it', "\n";
print 'that\'s it\!', "\n";
print 'that\'s it\\!', "\n";
- or download this
that's it \ escapes the delimiter (')
that's it\! \ wasn't followed by the delimiter (') or \
that's it\! \ escapes \
- or download this
print "\"that's it!\"\n";
print "\"that's it\!\"\n";
print "\"that's it\\!\"\n";
- or download this
"that's it!" \ escapes "
"that's it!" \ escapes !
"that's it\!" \ escapes \