Help for this page

Select Code to Download


  1. or download this
        $text =~ /extractor/    # i.e. match anywhere in the string
    
  2. or download this
        $text =~ /\G extractor/gc    # i.e. match at current pos in string
    
  3. or download this
        use Text::Balanced ':ALL';
    
    ...
    
        use Data::Dumper 'Dumper';
        print Dumper [ @data ];