http://qs321.pair.com?node_id=641074


in reply to Clipping text in the middle of an open HTML tag

If your news articles tend to be really big, such that fetching the whole story text every time would be a hindrance for your application, you might want to consider how important it really is to try to preserve html markup in an initial 200 characters for your "sample" display.

In effect, I think your choices are:

  1. Select the whole text for each story, run it through HTML::TokeParser or equivalent, keeping track of (relevant) tag nesting as you march along, until you hit your 200-character limit, and close all open tags at that point.

  2. Select "LEFT(article_body,280)", use s/<[^>]+>//g to strip out all html tags, then truncate the result at 200 characters (or at a word boundary close to that length)

Either way, you would be counting only the displayable characters (although in the first approach, with most html formatting preserved, the display space taken up by the 200 characters would vary with the formatting). Of course, if there are lots of character entity references in the text, you probably want a way to count each as "one character"...

So think about the desired output: what really makes the most sense, in your app, for that "sample" display? Maybe you want to do stuff like replacing certain tags with particular punctuation (e.g. "ul" and "ol" with emdash, "li" with asterisk, "hN" with underscore, "p" with "/", or whatever). That way, the formatting counts for something in the final result, but in a controlled and consistent way.

(updated to fix grammar)