DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26885>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26885 Response assertin and regular expressions ------- Additional Comments From [EMAIL PROTECTED] 2004-02-13 11:03 ------- <html>(.|\n)</html> won't work - you probably meant <html>(.|\n)*</html> Alternation - i.e. | - is very expensive as the matcher has to be able to backtrack if one of the alternatives does not work. <html>[.\n]*</html> should work (?s) means treat as single line, i.e. "." matches "\n" --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
