Help for this page

Select Code to Download


  1. or download this
    my $foo = "Foo";
    my $bar = "Bar";
    my $string = $foo . $bar;
    # $string contains "FooBar".
    
  2. or download this
    my $foo = "Foo";
    my $bar = "Bar";
     $foo .= $bar;
    # $foo now contains "FooBar"
    
  3. or download this
    my $this = "This";
    my $that = "That";
    ...
    my $other = "Other";
    my $string = join "", $this, $that, $the, $other;
    # $string now contains "ThisThatTheOther".