RegularExpression Question

  • Thread starter Thread starter Munsifali Rashid
  • Start date Start date
M

Munsifali Rashid

Put it into a group using brackets:

You can then access the match in the Groups property of your regular
expression match.

Hope this helps,

Mun


--
Munsifali Rashid
http://www.munsplace.com/




Fabio said:
Hi all,

I have this simple string for example:

anything<font>catch this</font>

and I need a regularexpression to Catch "catch this"
so, I can use this pattern:

">[^<]+"

and the match returns ">catch this"

the question: HOW CAN I DO TO THE MATCH DO NOT RETURN THE STRING ">" ???

thanks in advance,
Fábio
 
Hi all,

I have this simple string for example:

anything<font>catch this</font>

and I need a regularexpression to Catch "catch this"
so, I can use this pattern:

">[^<]+"

and the match returns ">catch this"

the question: HOW CAN I DO TO THE MATCH DO NOT RETURN THE STRING ">" ???

thanks in advance,
Fábio
 
Back
Top