Help for this page

Select Code to Download


  1. or download this
    my @matches = ($string =~ /!#(.*?)#!/g);
    
  2. or download this
    "123!#45!#678#!90"
    
  3. or download this
    my @matches = ($string =~ /!#((?:[^#!]|#(?!!))*)#!/g );