Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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)


In reply to Re: Clipping text in the middle of an open HTML tag by graff
in thread Clipping text in the middle of an open HTML tag by hacker

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-03-28 06:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found