I've a string like below
<a name="1.F"></a>
I'm trying to extract only the value name value. And the regex I'm using to get this done is.
Search string
<a name=\"(\d)+(\.)(\w)+\"?>
Replace String
$1$2$3
Result: Here the Result that I get is what is in between **
search result :
**<a name="1.F">**</a>
Current Replace Result:
1.F</a>
Expected Replace Result:
1.F
please let me know, how can we get the Expected result.
Thanks