I need to extract ALL text from some kind of link
<Aid="ctl00_ctl00_ctl00_BodyContent_ContentPlaceHolder1_MainContentPlaceHolder_ResourceHostControl1_resContainer_rptColumn1_ctl00_ctl00_wrapper_downNodesTable_ctl01_ToolsetLink1"href="/Orion/NetPerfMon/NodeDetails.aspx?NetObject=N:78">SFTP</A>
the reason that the A and the id is as I removed all \t\r\n\ ans spaces
the expressions I tried :
\<a.+?>([^\<]+)
basically I want to extract the SFTP word that I guess is identified as:
start with >
any possible character including +- dots commas end with </a>
after trying to use expresso
and browsing the values came to this :
>(\w+)\</a> - I get two values [0] - >SFTP</A> [1] - SFTP
it works only for a word without any special chars
my problem is that I don't know what can be inside the > <
tried adding a .
before the \w+
as the "any character"
still with no success