"all the dots, quotes, semicolumns, etc" are usually taken care of by the quote() method within DBI

You misunderstood me here a bit. Here's an example: if the text of the new item will be something like "I really, really like this node.", then the index will be something like:

"I" -> 1, "really," -> 1, "really" -> 1, "like" -> 1, "this" -> 1, "node." -> 1

I would expect a different result in the finished program, though. :)

Why are you letting users enter HTML? If you're getting it from another source, that's different, though, you may be stuck with it.

Because my users are kind of advanced. :) Sometimes they need plain text, but sometimes they need a few tags to better express themselves. For example, they do tables and links.

After some more thinking (as usualy, after posting), I decided to separate two issues I've raised in the original post. One issue is to get rid of HTML before creating index, and another issue is to get rid of the punctuation (dots, quotes, etc). This is much clearer to me know and I thank you for that. :)

Do the HTML parsing modules break for you when confronted with invalid HTML? Given the crap floating aroud the web, I'd be surprised, especially since all you want to do is get rid of the tags. Have you tested any of the modules?

I haven't tried it yet, but it is about time I do. :)

Leonid Mamtchenkov aka TVSET


In reply to Re: Re: Cleaning up text for indexing in DB by TVSET
in thread Cleaning up text for indexing in DB by TVSET

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.