http://www.perlmonks.org?node_id=85456


in reply to how to put double quotes inside strings? (was: Double Quoutes)

Double quotes can be escaped or quoted inside of double quotes : print " she said \"hello, world!\"";.
this also works with single quotes : print ' she said \'hello, world!\'';.
for more info, see perlop manpage.