I have implemented AsyncTask where the regular expression provided by the user is being used for matching huge html-code data. However, because some of the regular expressions c
Parsing HTML using RegEx is a bad idea, see: Parsing Html The Cthulhu Way
What about parsing the DOM instead? I tried jsoup a while ago and found it pretty neat to work with.