Help for this page

Select Code to Download


  1. or download this
    my $str = "a load of constant stuff...";
    $str .= "optional bit in the middle " if $option;
    $str .= "loads more stuff";
    
  2. or download this
    my $str = "a load of constant stuff...";
            . ($option ? "optional bit in the middle " : undef);
            . "loads more stuff";