I have a tag in xml file like
<a href="/abc/xyz/ccc" id="link_abc" title="bala" name="link_abc"></a>
so i am storing this value in a string called tempString; Now i have to parse the tempString so that i can extract only href attribute value. the output i am expecting is /abc/xyz/ccc. I am looking for Java regular expression for doing this.
I would really appreciate your help on this.
Regards, Ramakrishna.