http://www.perlmonks.org?node_id=297904


in reply to Re: Re: The N-queens problem using pure regexes
in thread The N-queens problem using pure regexes

Well, [\x00-\xFF]* matches anything, or any length. I can't use .* here because it should skip over newlines as well. And adding /s to the regex won't do it either, as other </code>.*</code>'s should *not* match newlines.

Abigail