Got an http response I need to parse, more precisely I wanna get a part of the response based on a tag. Let's say:
<div class="row"><span>some text<pre>% Copyright (c) </pre></span></div>
So I'd pass "pre" and the parser would return the block between
<pre></pre>.
Is there a better way to do this in java? I don't understand if HttpMessageParser could do it for me.
Thanks in advance!