Help for this page

Select Code to Download


  1. or download this
    $_ = "This is a teeeext for testting";
    /(?<char>.*)/
         and print "'$+{char}' is matched pattern\n";
    # This prints 'This is a teeeext for testting' is matched pattern
    
  2. or download this
    $_ = "This is a teeeext for testting";
    /(?<char>e*)/
         and print "'$+{char}' is matched pattern\n";
    # This prints '' is matched pattern