Help for this page

Select Code to Download


  1. or download this
      ($match) = "The longest word" =~ /(\w+)/;
      print $match;
    
  2. or download this
      ($match) = "Mrs Smith" =~ /(Mr|Mrs)/;
      print $match;
    
  3. or download this
      ($match) = "/foo/bar" =~ m[.*/(.*)];
      print $match;
    
  4. or download this
      ($match) = "foo/bar/baz" =~ m[.*?/(.*)];
      print $match;
    
  5. or download this
      ($outer, $inner) = "/foo/bar" =~ m[(/(.+))*];
      print $inner;