1. Perl
  2. Syntax
  3. string
  4. here

Escape sequence of single quoted strings

A list of single-quote string escape sequences.

Escape sequence Meaning
\' '
\\ \

In single quotes, remember the "\'" that represents a single quote and the "\\" that represents the backslash itself.

my $message = 'I \'m honest Perl User \\';

Related Informatrion