<div dir="ltr"><br><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">

<div style="font-size:14px;font-family:Calibri,sans-serif;word-wrap:break-word"><div>(?<=.+).+(?=</a>)</div></div></blockquote><div><br></div><div>Most regex engines do not support regex pattern matching inside a lookbehind. <a href="http://www.regular-expressions.info/lookaround.html">According regular-expressions.info</a>, the only engines that do are provided by JGsoft, and the .NET framework.</div>

<div><br></div><div>I believe TextMate uses the Oniguruma regex engine.</div><div><br></div><div>See if this one meets your needs instead:</div><div>(?<=>).*(?=\<\/a\>)<br></div></div>
</div></div>