What is the best way to clear below HTML from a webpage? I want to pull out Apple, Orange and Grape and put them in a drop-down menu in an Android app. Should I use Jsoup for this, and if so, what would be the best way to do this? Should I use Regex instead?
<select name="fruit" id="fruit" >
<option value="APPLE">Apple</option>
<option value="ORANGE">Orange</option>
<option value="GRAPE">Grape</option>
</select>
alexD source
share