I want to extract the string between < a: href > and < /a: href> from the following:
< a: href > https://0.0.0.1/abcd/openthis.pdf < /a: href> using StringTokenizer, split or scanner.
I'm trying to use StringTokenizer with < a: href > adn < /a: href > as delimiters but its not working.
I tried to escape '<', '>' and ':', but this doesn't seem to be the problem. My guess is that it won't accept a word or a phrase as a delimiter. Any ideas/help/suggestions would be appreciated. Thanks
| |||
|
feedback
|
|
You can give Regex a try. Try this regex Please keep one thing in mind the regex solution will only work if you have extracted this string
In general use Here is a reason why you should not parse HTML with regex. I would give htmlcleaner a try.
You can use | |||||||||||||
feedback
|
html.? – RanRag Jan 24 at 1:26