Help for this page

Select Code to Download


  1. or download this
    my $test = 'illegal\\\\characters*example?';
    my @illegal = qw(\ * ?);
    ...
        $c++;
    }
    print $test."\n";
    
  2. or download this
               A single-quoted, literal string.  A backslash
               represents a backslash unless followed by the
               delimiter or another backslash, in which case the
               delimiter or backslash is interpolated.
    
  3. or download this
    my $test = 'illegal\\\\characters*example?';
    my @illegal = qw(\ * ?);
    ...
        $c++;
    }
    print $test."\n";