Re: containsregex and concat

2006-11-26 Thread George Bills
Hrm, it probably isn't since advanced regexs are still black magic to me. The "." was supposed to match any character, including a newline (with the s flag), the * to say match 0-n of them and the ? to say be lazy, match as little as possible (so that I don't pull in .. in one match). I j

Re: containsregex and concat

2006-11-26 Thread Dave Brosius
.*? doesn't seem right to me. what's that's suppposed to do? probably something like [^<]* - Original Message - From: "George Bills" <[EMAIL PROTECTED]> To: Sent: Sunday, November 26, 2006 11:47 PM Subject: containsregex and concat I've been trying to use a regular expression an

containsregex and concat

2006-11-26 Thread George Bills
I've been trying to use a regular expression and the concat task to pull summary tables (...) out of a set of test reports. The reports are all HTML files sitting in ${report.path}. The task works fine up until I start trying to select output from it with . Is there something wrong with my regu