First of all, I am extremely well-aware that trying to hand-write an XML parser is a terrible idea, and that ZA̡͊͠͝LGΌ ISͮ̂҉̯͈͕̹̘̱ TO͇̹̺ͅƝ̴ȳ̳ TH̘Ë͖́̉ ͠P̯͍̭O̚N̐Y̡ H̸̡̪̯ͨ͊̽̅̾̎Ȩ̬̩̾͛ͪ̈́̀́͘ ̶̧̨̱̹̭̯ͧ̾ͬC̷̙̲̝͖ͭ̏ͥͮ͟Oͮ͏̮̪̝͍M̲̖͊̒ͪͩͬ̚̚͜Ȇ̴̟̟͙̞ͩ͌͝S̨̥̫͎̭ͯ̿̔̀ͅ and so forth.
That said, I have an assignment where I'm supposed to grab a webpage, strip out the tags (handling <p> and <a href> a bit differently), and display the beautiful, tag-free text. I am not allowed to use the org.xml.sax package, or anything similar.
Our class has not yet learned about regular expressions, and most of my classmates are uttering unholy incantations with String.indexOf(). To me, it seemed a lot easier (nevermind a lot better) to hack up an event-based {X,HT}ML parser.
So I have a Scanner for the webpage stream, and have this (some details removed for brevity):
stream.useDelimiter("\r?\n|\r"); // Use platform-independent newlines
//as delimiter
// 1 2 3 4 5 6 7 8 9 10
String tagRE = "([^<>]*?)(<!?\\s*)(/?)(\\s*)(\\w*)(\\s*[^<>]*?)(/?)(\\s*)(>)([^<>]*)";
//(Reluctant-anything) < whitespace optional-/ whitespace (word) whitespace
//reluctant-anything > (greedy-anything)
fireOpenFileEvent();
Pattern tagPat = Pattern.compile(tagRE);
while(stream.hasNextLine())
{
if(stream.hasNext(tagPat))
{
String toParse = stream.next(tagPat);
Matcher m = tagPat.matcher(toParse);
if(! m.matches()) System.err.println("Impossible non-match!");
fireTextEvent(m.group(1));
String tag = m.group(5);
if(! m.group(7).equals("")) //Self-closing tag
{
fireTagEvent(new XMLElement(tag, false));
fireTagEvent(new XMLElement(tag, true));
}
else
{
fireTagEvent(new XMLElement(tag, m.group(3).equals("/")));
}
fireTextEvent(m.group(10));
}
else //No tags (regex doesn't match). Just plain text
{
fireTextEvent(stream.nextLine);
}
}
fireEOFEvent();
This works beautifully in many cases, except one--when there's more than one tag on a line. I was really hoping that Scanner wouldn't break things into tokens--and that a call to next(pattern) would eat up as much of the stream as needed in order to match. So if a line was <b>Hello World!</b>, it would match <b>Hello World! on one iteration, and then </b> the next time. Instead, it processes a line at a time. Since the entire line doesn't match the pattern, it gets handled by the else clause. And no tags are stripped.
So what's the best approach? Is there some sort of magic delimiter I can use? Should I make the regex match anything with a tag in it, chop off the first tag, and then recursively process the rest of the string? Should I try a giant hack, and replace every "<" with "\n<"? Am I just generally on the wrong foot?
Thanks in advance.
Jsoup.connect(url).get().text();. It also offers aWhitelistAPI which allows you to keep only a subset of tags. Using regex for this job is just.. insane. – BalusC Oct 8 '11 at 18:05substringing theindexOf("<")and whatnot. – tsm Oct 8 '11 at 19:01