Quoting strings in Perl - even ones containing apostrophes and quote or speech marks

Broadly speaking Perl has two types of strings: quotes that are interpolated at runtime and literal quotes that are not interpolated. Let’s review each of these in turn.

Interpolated Strings

These strings are declared by encapsulating the quote in speech marks (“). If the encapsulated quote contains variables or escape-sequences, these will be processed at runtime.

my $integer = 10;
#Declare an interpolated string
my $sentence = "I will count to $integer.\nThen I am coming for you!";
print $sentence;

This will print:

I will count to 10. 
Then I am coming for you!

Notice how the $integer variable was interpolated to print it’s value, and how the newline escape sequence (\n) was applied too.

Literal strings (not interpolated)

Literal strings need to be encapsulated by apostrophes (‘). The content of these strings will be preserved as quoted, and not interpolated at runtime. Using literal strings is also more efficient as the Perl parser does not have to examine the the string for variables and escape sequences for interpolation.

my $integer = 10;
#Declare a literal string
my $sentence = 'I will count to $integer.\nThen I am coming for you!';
print $sentence;

This will print:

I will count to $integer.\nThen I am coming for you!

Strings that contain quote / speech marks

To quote a string that contains speech marks or apostrophes, Perl provides two quote operators: q for literal quotes and qq for interpolated quotes. The quote operators let the programmer define the encapsulating characters for the string - simply choose characters that are not contained in your string:

my $user = "sillymoose";
my $difficult_string_interpolated = qq{Welcome $user\n. Whilst you are are here, you can "do as they do in Rome" and enjoy yourself};
print $difficult_string_interpolated;

This will print:

Welcome sillymoose
Whilst you are are here, you can "do as they do in Rome" and enjoy yourself

Although the example above used curly braces ({,}) to encapsulate the string, Perl will accept most symbol characters such as those on the top of your keyboard(!@£$%^&*-+). Contrary to popular belief, Perl will not accept any character as the delimiter - the letters of the alphabet (a-z) do not work for example.


This article was originally posted on PerlTricks.com.

Tags

David Farrell

David is a professional programmer who regularly tweets and blogs about code and the art of programming.

Browse their articles

Feedback

Something wrong with this article? Help us out by opening an issue or pull request on GitHub