I have a method that returns a string in the following format:
string tableTag = "<th><a href="Boot_53.html">135 Boot</a></th>"
I want to get the value of the href
attribute and store it into another string called link
:
string link = "Boot_53.html"
In other words, link
should be assigned the href
attribute in the string. How can I accomplish that?