Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
     __DATA__
    this is a test
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $string = "this is a test";
    my $modified_string = $string =~ s/([a-zA-Z])/\[$1\]/gr;
    print $modified_string;