1 min

Quotes in Perl

http://perlmaven.com/quoted-interpolated-and-escaped-strings-in-perl

http://www.perlmonks.org/?displaytype=print;node_id=401006

Single quotation marks are used to enclose data you want taken literally.

Double quotation marks are used to enclose data that needs to be interpolated before processing.

q

The first way to quote without quotes is to use q() notation. Instead of using quotation marks, you would use parentheses with a q preceding them:

$bar = q(it is 'worth' $foo);

This example, when run, produces the following:
it is 'worth' $foo

qq

In the same way that double-quotes add interpolation to the functionality of single-quotes, doubling the q adds interpolation to quoting without quotation marks. For instance, if you wanted to avoid escape characters and interpolate $foo in the above code, and wanted to use double-quotes around the word worth, you might do this:

#!/usr/bin/perl -w
use strict;
my $foo;
my $bar;
$foo = 7;
$bar = qq(it is "worth" $foo);
print $bar;

This example, when run, produces the following:
it is "worth" 7

qw

You can use qw to quote individual words without interpolation. Use whitespace to separate terms you would otherwise have to separate by quoting individually and adding commas. This is often quite useful when assigning lists to array variables. The two following statements are equivalent:

@baz = ('one', 'two', 'three');
@baz = qw(one two three);

#perl
#programming

From JR's : articles
213 words - 1450 chars - 1 min read
created on - #
source - versions

Related articles
Creating Perl Modules and OO Programming - Oct 17, 2013
Perl CGI processing application json data - Feb 25, 2015
Yo-Perl Readme - Aug 19, 2014
Perl regex extracting domain name from URL code example - Oct 02, 2013
Rest and Json links to keep around - Oct 10, 2013
more >>



A     A     A     A     A

© 2013-2017 JotHut - Online notebook

current date: Apr 18, 2024 - 7:08 a.m. EDT