Help for this page
#!/usr/bin/perl while ("this_is_broken_" =~ /(.*?)_/gs) { print "($1) "; }
#!/usr/bin/perl while ("this_is_broken_" =~ /(.*?)_/g) { print "($1) "; }