So regular expressions may have side-effects. What, then, is the preferred method of getting the start and end character positions of all HTML tags in a document? Parsing libraries such as Jsoup and NekoHTML don't seem to provide this information, even XMLLocator doesn't seem to apply, since it only provides the end of the current document event.
I'm not interested in the type or name of tag, any of its attributes, or stripping anything out of the text. I just want to know where they start and where they end.
For purposes of this question, it can be assumed that the source HTML is valid.