Help for this page
my @matches = ($string =~ /!#(.*?)#!/g);
"123!#45!#678#!90"
my @matches = ($string =~ /!#((?:[^#!]|#(?!!))*)#!/g );