Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use 5.010;
    ...
        say $1;
        say pos $str;
    }
    
  2. or download this
    use strict;
    use warnings;
    ...
    --output:--
    TGA
    12
    
  3. or download this
    use strict;
    use warnings;
    use 5.010;
    ...
        say $1;
        say pos $str;
    }