I need to grab the text "Home" or 'Home' from this code:
<%@ Page Title="<%$ GetText: '**Home**' %>" Language="C#" ..%>
<asp:Button Text="<%$ GetText: '**Home**' %>"/>
<asp:Button Text='<%$ GetText: "**Home**" %>'/>
<asp:Button Text="<%$GetText:'**Home**'%>"/>
<asp:Button Text='<%$GetText:"**Home**"%>'/>
Is there a regex for finding this?
I can do a search line by line for "<%$ GetText:" or "<%$GetText:" of course but maybe there is someone smarter :)
Thx