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
Comment on Re: The N-queens problem using pure regexes