Re: Can regular expression extract the value between

2004-12-08 Thread sebb
Or use the non-greedy operator "?": (?i)(.*)? The "(?i) prefix means to ignore case; adding the "?" means that the regex will match the first time in encounters ">" and "" - rather than looking for the longest possible match. S. On Tue, 7 Dec 2004 18:06:00 -0500, Kyle McAbee <[EMAIL PROTECTED]>

RE: Can regular expression extract the value between

2004-12-07 Thread Liao, Avian
t them into two seperate regex extractor, if so, how can I do it? Sorry keeping asking you question, and really really appreciated. AL -Original Message- From: Kyle McAbee [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 3:06 PM To: JMeter Users List Subject: RE: Can regular express

RE: Can regular expression extract the value between

2004-12-07 Thread Kyle McAbee
Dear Avian Liao and JMeter Users List: A regular expression can extract the value between "" and "". That is one of the commonest tasks we can use regular expressions for. To extract " Avian's testing " or "Today " from the examples in Avian's message: Target: target_text Regex: ]+>([^<]+) No