View Single Post
Old 08-20-2003, 10:11 AM   #1 (permalink)
mpedrummer2
Insane
 
PHP preg_replace question

ok...let's see if I can explain this properly...

I have a string. It needs to:

1) Be split into an array of single words (check)
2) Be stripped of "noisewords" (here's the problem)
3) Be inserted into a "keywords" table in a MySQL database.

Number 2 works...just too well. I have the word "the" in my noisewords array...the problem is, it not only replaces the word the, but also any time that "the" is used in another word. So "another" would become "anor". Actually, since I also have "a" and "no" specified as noisewords, it becomes "r".

Any thoughts?

MPEDrummer
__________________
My sig can beat up your honor student.
mpedrummer2 is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73