Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
It's just HTML? Have you looked at jsoup.org? Transforming a HTML site to text is then as easy as this oneliner: Jsoup.connect(url).get().text();. It also offers a Whitelist API which allows you to keep only a subset of tags. Using regex for this job is just.. insane. – BalusC Oct 8 '11 at 18:05
We're not allowed to use tools deliberately created for HTML-parsing. It doesn't have to be a perfect job (we're allowed to ignore anything between <>'s besides "<p>", "</p>", "<a href="{URL}">, and "</a>".) And yes, it's seeming increasingly insane to me too. I'm just glad I'm not substringing the indexOf("<") and whatnot. – tsm Oct 8 '11 at 19:01
Can you post your instructor's name and home address? People may want to have discussions with him about teaching students REALLY BAD HABITS. (JK!) – TrueWill Oct 9 '11 at 3:52
If you just post sample input and output, so we understand the exact processing edge cases, maybe we can help you better. – Bohemian Oct 9 '11 at 4:06

3 Answers

up vote 1 down vote accepted

When you call the next(Pattern) method, you've told the Scanner the next token is everything up to the next delimiter; the only question is, does the token match the Pattern? That's consistent with other nextXXX() methods (e.g., nextInt() fails if the next token doesn't look like an int), but everybody expects next(Pattern) to work differently.

I think the method you're looking for is findWithinHorizon(); it ignores the delimiter and just finds the next match, same as Matcher's find() method. Try this: throw away all that hasNextLine(), hasNext(Pattern) stuff and use this framework instead:

String lastHit = stream.findWithinHorizon(tagRE, 0);  // always use '0'
while (lastHit != null)
{
    MatchResult lastMatch = stream.match();

    // ...

    lastHit = stream.findWithinHorizon(tagRE, 0);
}

Fill in your event-firing code, tweak the regex as needed, but don't use any of Scanner's other methods (aside from opening and closing the stream, that is). When you're trying to do anything at all complicated, most of Scanner's API just seems to get in the way.

Scanner's API may be bloated and unintuitive, but it has one extremely useful feature: Used in this way, it will keep reading from the stream, not only until it finds a match, but until it's sure that no longer match is possible from the same starting position. In other words, it works just like Matcher's find() method does with a static string. Of all other regex flavors I know of, only Boost offers anything similar.

share|improve this answer
This is exactly what I was looking for--everything's working great now. Many many thanks! – tsm Oct 10 '11 at 19:44

You are using the wrong technology. There is no such thing as 'regex-based parsing'. Parsing and XML imply a stack, and regex doesn't have one. Use a proper XML parser, or XPath as suggested by @Dabbler.

EDIT: I missed the part about the class assignment. Not a well-designed assignment in my opinion. You probably don't know about parsing, you can't use the tools that are provided for the purpose, the resulting code doesn't really teach you much except about unholy incantations ofindexOf() calls, ... The way to do this is one character at a time as suggested by another poster: note the < character, start saving the tag name, stop at the next space or >, ignore or process the attributes as required; start processing the content; if you hit an opening <, push all state and restart; and when you hit a closing /> pop the state.

share|improve this answer
Would you mind elaborating? Pretend I have: <html><body>Hello<strong>world<em>!</em>!</strong>Foobar</body></html> What's wrong with fireTag("html"); fireTag("body"); fireText("Hello"); fireTag("strong"); fireText("world"); /* etc */ Were I doing something fancy, I could understand how making the listener code would be tricky, but for my purposes it is (or should be) a very manageable complexity level. My main problem is that the Scanner feeds me, for example, <body>Hello<strong> all at once, whereas I can only handle <body>Hello (and need to save <strong> for the next iteration). – tsm Oct 9 '11 at 1:20
So I'd be legitimately be very pleased to learn why a stack is necessary. – tsm Oct 9 '11 at 1:20
@Tim Macdonald because XML has a recursive syntax. – EJP Oct 9 '11 at 2:49

Is it mandatory you use RegEx, or is XPath/XSLT an option? Then, if your input is XML (or XHTML, for that matter), all you need to do is convert the entire input to a string. That will eliminate all tags and attributes, leaving ony the elements' text content.

share|improve this answer
It's mandatory that we not use tools deliberately created for *ML-parsing. Very unfortunately. (See comment on OP for a few more details.) – tsm Oct 8 '11 at 19:01
1  
Couldn't you just read it one character at a time and have a flag indicate whether you are in a tag (i.e. between < and >) or not? And when you're not in a tag, you output the character. Or is that too simplistic for some reason? – Dabbler Oct 8 '11 at 19:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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