Trying to use regex refind tag to find the content within the brackets in this example using coldfusion
joe smith <joesmith@domain.com>
The resulting text should be
joesmith@domain.com
Using this
<cfset reg = refind(
"/(?<=\<).*?(?=\>)/s","Joe <joe@domain.com>") />
Not having any luck. Any suggestions?
Maybe a syntax issue, it works in an online regex tester I use.
You can’t use lookbehind with CF’s regex engine (uses Apache Jakarta ORO).
However, you can use Java’s regex though, which does support them, and I’ve created a wrapper CFC that makes this even easier. Available from:
http://www.hybridchill.com/projects/jre-utils.html
(Update: The wrapper CFC mentioned above has evolved into a full project. See cfregex.net for details.)
Also, the /…/s stuff isn’t required/relevant here.
So, from your example, but with improved regex:
A quick note, since I’ve updated that regex a few times; hopefully it’s at its best now…