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

link|improve this question

50% accept rate
1  
Trying to parse html.? – RanRag Jan 24 at 1:26
I think best option would be regex than StringTokenizer. – thinksteep Jan 24 at 1:28
2  
Use an HTML parser, that's what they're for. Also consider searching this site before asking this as this same question gets asked just about every other day. – Hovercraft Full Of Eels Jan 24 at 1:28
feedback

1 Answer

You can give Regex a try.

Try this regex >\s+(.*?)\s+<'.

Please keep one thing in mind the regex solution will only work if you have extracted this string

< a: href > https://0.0.0.1/abcd/openthis.pdf < /a: href>

In general use html parsers to extract the text from the corresponding html code.

Here is a reason why you should not parse HTML with regex.

I would give htmlcleaner a try.

HTMLCleaner is Java library used to safely parse and transform any HTML found on web to well-formed XML. It is designed to be small, fast, flexible and independant. HtmlCleaner may be used in java code, as command line tool or as Ant task. Result of parsing is lightweight document object model which can easily be transformed to standards like DOM or JDom, or serialized to XML output in various ways (compact, pretty printed and so on).

You can use XPath with htmlcleaner to get contents within xml/html tags.Here is a nice
example Xpath Example

link|improve this answer
2  
Re: use a regex: please see my favorite answer ever – Chris Jan 24 at 1:42
Wow.Such in-depth analysis. – RanRag Jan 24 at 1:45
@Chris: that answer is pure poetry. I cried. :) – Hovercraft Full Of Eels Jan 24 at 1:47
@Ranrag: his in-depth analysis got two up-votes. – Hovercraft Full Of Eels Jan 24 at 1:47
and i got none :( – RanRag Jan 24 at 1:48
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.