Mega Code Archive

 
Categories / Perl / String
 

A single q creates a single-quoted string

#If your data already have quotes, you can use 'q' operators to create strings with quotes. $var = q('Single-quoted string.'); print "$var\n";