I want to know how to get the string out of a group of strings
String j = "<a ............> hai</a>";
I want to get the string for the tag
<a ...> ... </a>
|
I want to know how to get the string out of a group of strings
I want to get the string for the tag
|
|||||||
|
|
I'd use an XML parser for that and extract the attributes in question. |
|||
|
|
|
I agree with Bozho. If you need to do this on a regular basis, an XML or HTML Parser would be much less error prone. For a quick and dirty approach, you can use the Regex
Make sure to escape all these quotes when trying that. |
|||
|
|
|
I hate regex, I would have done it this way..
Do the same for Note, you will get |
|||||
|