use v6-alpha; =head1 NAME Perl 6 Cookbook: Introduction to Strings =head1 Definition In Perl 6, a string is a sequence of zero or more characters and other simple objects, forming a single unit of data of the type Str. A string is data usually in its reportable or printable form. You can write a Perl string using single-quotes '', double-quotes "", and various quote-like operators. You can create and manipulate strings programmatically, in many ways. In fact, this is what Perl does best. =head1 Description Perl 6 interprets strings variously, as they appear in different contexts. A string may consist of zero or more characters, including letters, spaces, numbers, and other characters: Note: text preceded by # is ignored by the Perl 6 interpretor print "" ; # output is an empty string print "Hello\n" ; # output is Hello followed by a new line say "Hello" ; # same say 'Hello' ; # same =cut print "" ; # output is an empty string print "Hello\n" ; # output string is Hello followed by a new line say "Hello" ; # same say 'Hello' ; # same =pod Strings can be appended to one another, using the concatenation operator, ~ say "Hello" ~ " World" ~ "!"; # Here, three strings are concatenated into a # single string. Output is Hello World! followed by a new line =cut say "Hello" ~ " World" ~ "!"; =pod A number might be interpreted as a string, depending on the context say (1+1) ~ " is a number interpreted as a string" ; # 2 is a number interpreted as a string. Note the parentheses around (1+1), which cause 1 + 1 to be evaluated as a numeric expression, before the resulting "2" is evaluated as a string. =cut say 1 ; # 1 is a number say (1+1) ~ " is a number interpreted as a string" ; =pod Conversely, sometimes a string might be interpreted as a number: print +"" ; # a num-ified empty string evaluates as 0 print "1" + 1 ; # 2 The string, "1" is treated as a number in this context, added to the number 1 by the + operator, which returns the number, 2, as a string for output. =cut say +"" ; # a num-ified empty string evaluates as 0 say "1" + 1 ; # 2 =pod Context sensitivity is the essence of Perl. Keeping this in mind, what would you expect to be the output string, for the following? print "1" ~ "1" + 1 ; # 12 But, "1+1", surrounded by quotation marks, either '' or "", stringifies the expression, so that it is evaluated as a string. print "1 + 1" ; # literally: 1 + 1 To force the interpretation of a string for any programmatic value it might contain, use the built-in eval() function: say eval "1 + 1"; # 2 On the command-line, you may pass a string to the perl 6 interpretor, to have it evaluated as a program expression, by using the -e switch: ./pugs -e "say 1+1"; # 2 =head1 Assigning Strings A string object can be created explictly, by declaring a variable using the Str keyword, and assigning a string value to it. my Str $string = 'This Str is holding a String'; Or a string object can be declared implicitly by assigning a string value to a variable, in this case a scalar. my $scalar = 'String'; say '$scalar is ' ~ $scalar.WHAT; # $scalar is Str =cut my Str $string = 'This is $string: a scalar holding a String'; say $string ; say '$string is ' ~ $string.WHAT ; # Str my $scalar = 'This is $scalar holding a String'; say $scalar ; say '$scalar is ' ~ $scalar.WHAT ; # Str =pod Assignments of non-strings set the variable to the appropriate type: my $scalar = 1234; say '$scalar is ' ~ $string.WHAT" # $scalar is Int An object can be stringified, by using the ~ operator immediately prior to the variable's sigil say '~$scalar is ' ~ (~$scalar).WHAT; # ~$scalar is Str =cut $scalar = 1234; say $scalar ; say '$scalar is ' ~ $scalar.WHAT; say '~$scalar is ' ~ (~$scalar).WHAT; =pod TODO: a short paragraph on the difference between the my $scalar and my Str $string examples above. =head1 Quotes, Interpolation and Quote-like operators =head2 Single-quoted Strings Strings that are written with single quotes are almost verbatim. However, backslashes are an escape character. This is so that you can write literal single-quotes within a single-quoted string, and also be able to write a backslash at the end of a single-quote-enclosed string: say 'n\' ; # Error: perl sees no closing ' say '\\' ; # \ say 'n\'' ; # n' say 'n\n' ; # n\n say 'n\\n' ; # n\n say 'n\\\n' ; # n\\n better spelled as: say 'n\\\\n' ; # n\\n A few other backslashy escapes work in single quotes too =head2 Double-quoted Strings If you want to interpolate variables and other special characters within a literal string, use double quotes around the value: my $var1 = 'dog' ; say "The quick brown fox jumps over the lazy $var1"; =head2 Interpolation Double-quoted strings interpolate the elements of an array or a hash, closures, functions, backslashed control characters, and other good stuff. Single-quoted strings do not. # literal whitespace my $squot = ' The quick brown fox jumps over the lazy dog. dog.'; my $dquot = " The quick brown fox jumps over the lazy dog."; say $squot; say $dquot; # Double-quotes interpolate special backslash values, # but single-quotes do not say 'The quick brown fox\n\tjumps over the lazy dog\n'; say "The quick brown fox\n\tjumps over the lazy dog\n"; # interpolate array elements: my @animal = ("fox", "dog"); say 'The quick brown @animal[0] jumps over the lazy @animal[1]'; say "The quick brown @animal[0] jumps over the lazy @animal[1]"; # interpolate hash elements: my %animal = (quick => 'fox', lazy => 'dog'); say 'The quick brown %animal{\'quick\'} jumps over the lazy %animal{\'lazy\'}.'; say "The quick brown %animal{'quick'} jumps over the lazy %animal{'lazy'}."; # interpolate methods, closures, and functions: say '@animal.elems() {@animal.elems} &elems(@animal)'; say "@animal.elems() {@animal.elems} &elems(@animal)"; =cut # literal whitespace my $squot = ' The quick brown fox jumps over the lazy dog. dog.'; my $dquot = " The quick brown fox jumps over the lazy dog."; say $squot; say $dquot; # Double-quotes interpolate special backslash values, # but single-quotes do not say 'The quick brown fox\n\tjumps over the lazy dog\n'; say "The quick brown fox\n\tjumps over the lazy dog\n"; # Variables my $var1 = 'dog' ; say 'The quick brown fox jumps over the lazy $var1'; say "The quick brown fox jumps over the lazy $var1"; # interpolate array elements: my @animal = ("fox", "dog"); say 'The quick brown @animal[0] jumps over the lazy @animal[1]'; say "The quick brown @animal[0] jumps over the lazy @animal[1]"; # interpolate hash elements: my %animal = (quick => 'fox', lazy => 'dog'); say 'The quick brown %animal{\'quick\'} jumps over the lazy %animal{\'lazy\'}.'; say "The quick brown %animal{'quick'} jumps over the lazy %animal{'lazy'}."; # interpolate methods, closures, and functions: say '@animal.elems() {@animal.elems} &elems(@animal)'; say "@animal.elems() {@animal.elems} &elems(@animal)"; =pod =head2 Perl's Quote-like Operators It's often useful to use something other than single or double quotes when declaring strings. To do so use the q// and qq// quote operators, which provide advanced interpolation control: # Single quoted strings say 'I have to escape my \'single quotes\' in this string'; say q/This string allows 'single quotes' seamlessly/; # Double quoted strings say "I have to escape my \"double quotes\" in this string"; say q/This string allows "double quotes" seamlessly/; The slashes in q// and qq// can be replaced with most of the delimiters that worked in Perl 5. All of Unicode above Latin-1 is reserved for user-defined quotes. # Single quoted strings say q'Many delimiters are available for quoting'; say q"Many delimiters are available for quoting"; say q`Many delimiters are available for quoting`; say q[Many delimiters are available for quoting]; say q; say q{Many delimiters are available for quoting}; say q?Many delimiters are available for quoting?; # But not the colon B<:> q:illegal_perl6:; #legal perl 5 # Also a space is needed below, because q() is a function call say q (Many delimiters are available for quoting); =head2 Advanced Interpolation Control Perl 6 allows very fine control over string quoting using the q// quote operator with specialized adverbs. For instance, q:s// signifies that we only want scalars interpolated. These adverbs can also be expressed in a short form, for instance q:s// can be expressed as qs//. :0 :raw No escapes at all (unless otherwise adverbed) :1 :single Interpolate \\, \q and \' (or whatever) :2 :double Interpolate all the following :s :scalar Interpolate $ vars :a :array Interpolate @ vars :h :hash Interpolate % vars :f :function Interpolate & calls :c :closure Interpolate {...} expressions :b :backslash Interpolate \n, \t, etc. (implies :m) :w :words Split result on words (no quote protection) :ww :quotewords Split result on words (with quote protection) :x :exec Execute as command and return results :t :to Interpret result as heredoc terminator # Raw quoting: no escaping at all (unless otherwise adverbed) say q:raw(:raw (no interpolation) even backslash has no special meaning: \\ \/; say q:0/:0 (no interpolation) even backslash has no special meaning: \\ \/; say q0/0 (no interpolation) even backslash has no special meaning: \\ \/; # Single quoting: say 'Lots of options for single quotes'; say q/Lots of options for single quotes/; say q:1/Lots of options for single quotes/; say q1/Lots of options for single quotes/; # Double quoting: interpolates scalars, arrays, hashes, functions, # closures, and backslash codes say "Plenty of ways to double quote too"; say qq/Plenty of ways to double quote too/; say q:2/Plenty of ways to double quote too/; say q2/Plenty of ways to double quote too/; # Interpolate scalars only: say q:s/The quick brown $var1 jumps over the lazy dog/; say qs/The quick brown $var1 jumps over the lazy dog/; # Interpolate @ vars only: say q:a/The quick brown @animal[0] jumps over the lazy @animal[1]/; say qa/The quick brown @animal[0] jumps over the lazy @animal[1]/; say qa/We have @animal.elems() elements in @animal[]/; # interpolate % vars only: say q:h/The quick brown %animal{'quick'} jumps over the.../; say qh/The quick brown %animal{'quick'} jumps over the.../; say qh/We have %animal.elems() key in %animal{}/; # interpolate functions only: both & and () are required say q:f/The quick brown &get_animal('quick') jumps.../; say qf/The quick brown &get_animal('quick') jumps.../; # interpolate closures only: say q:c/The quick brown { return 'fox'; } jumps.../; say qc/The quick brown { return 'fox'; } jumps.../; # interpolate backslash codes only: say q:b/The quick brown fox\n\tJumps over the lazy dog/; say qb/The quick brown fox\n\tJumps over the lazy dog/; Adverbs can be strung together to make a specialized quoting environment for your string. # interpolate only scalars and array variables: say q:s:a/The quick brown $fox jumps over the lazy @animal[1]/; =head2 Special adverbs and synonyms =over 4 =item :w Split on words my ($fox,$dog) = q:w/brown lazy/; my @array = qw/fox dog/; The <> synonym for q:w has many uses @animals = ; say @animals[0] ; # fox %animal = ; say %animal ; # dog =item :ww Split on Quoted Words @animals = q:ww<"brown fox" "lazy dog">; # Quoted words and variable interpolation @animals = qq:ww/"brown $fox" "lazy %animal{'lazy'}"/; The «» synonym for qq:ww has many uses, also spelled <<>> ($fox,$dog) = «brown lazy»; ($fox,$dog) = <>; # same %animal = « $fox fox lazy "lazy dog" »; say %animal« $dog » ; # lazy dog say %animal<<$dog>> ; # lazy dog =item :x Execute TODO =back =item :t Defining Multiline Strings (Here Documents) Multiline strings (here documents) can be defined using the q// and qq// operators with the :to adverb added. # A double quoted multiline string: my $a = qq:to/EOF/; This is a multiline here document terminated by EOF on a line by itself with any amount of whitespace before or after the termination string. Leading whitespace equivalent to the indentation of the delimiter will be removed from all preceding lines. EOF When defined in this way the whitespace at the start of each line will be removed up to the same amount of indentation used by the closing delimiter, a tab character being equal to 8 normal spaces. A here document can be as exacting with adverbs as any other quoted string. For instance you can specify that you only want scalars interpolated by adding the :s adverb. # This multiline string will only interpolate scalars my $multiline = q:s:to/EOF/; This $scalar will be interpolated, but this @array won't be. EOF These adverbs apply to the body of the heredoc, not to the terminator, because the terminator has to be known at compile time. This means that q:s:to/EO$thing/ doesn't do what you mean. =cut