Help for this page

Select Code to Download


  1. or download this
    if ( /see the \d brown foxes\. they are \w+ fast\./ ) {
      # do something
    }
    
  2. or download this
    my ($count, $word);
    if (($count, $word) = /see the (\d) brown foxes\. they are (\w+) fast\
    +./) {
      print("There are $count foxes. Let's go hunting!$/");
    }