Help for this page

Select Code to Download


  1. or download this
    my $text = "hello to all the perl monks";
    while ($text =~ /\b([A-Za-z'\-]+ [A-Za-z'\-]+)\b/g) {
        print "$1\n";
    }#while
    
  2. or download this
    hello to
    to all
    all the
    the perl
    perl monks
    
  3. or download this
    hello to
    all the
    perl monks