Help for this page

Select Code to Download


  1. or download this
    $str = "this\nis my short\nstring\n\n";
    
    ...
    for ($str =~ /.*\n|.+/g) {  # Just like <>
       print(++$i, ": $_");
    }