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]>
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
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
3 matches
Mail list logo