Add
String repetition
String operatorsexamples/scalars/string_operators.p6 #!/usr/bin/perl6
use v6;
my $x = "Hello";
my $y = "World";
# ~ is the concatenation operator, ataching ons string after the other
my $z = $x ~ " " ~ $y; # the same as "$x $y"
say $z; # Hello World
my $w = "Take " ~ (2 + 3);
say $w; # Take 5
say "Take 2 + 3"; # Take 2 + 3
say "Take {2 + 3}"; # Take 5
$z ~= "! "; # the same as $z = $z ~ "! ";
say "'$z'"; # 'Hello World! '
~ concatenates two strings.examples/scalars/concat.p6 #!/usr/bin/perl6 use v6; my $a = prompt "First string:"; my $b = prompt "Second string:"; my $c = $a ~ $b; say "\nResult: $c"; As it can be seen from the above example any operation can be interpolated into a string using the curly brace syntax. Copyright 2006, 2007, 2008, 2009, 2010 Gabor Szabo http://szabgab.com/ Index | TOC |
Follow me: