http://qs321.pair.com?node_id=646552


in reply to Re: problems with global $1
in thread problems with global $1

If the string is at the beginning of the line: you have the '^' at the beginning your regex. You also have to make sure that what you think is a single space is really a single space. Try changing the space in the regex to, say, '\s+' to match any kind and amount of white space. There are probably other things that could go wrong that I haven't thought of...

non-Perl: Andy Ford