Im implementing a profanity filter by using a Trie data structure. Every swear word is added to the Trie. When I have a string to remove profanities from, I explode the string by using punctuations and check every word with the Trie. If found I replace by asterisks.Then I implode the string The issue is, how do I keep track of punctuations? In other words how do I make sure the resultant string has punctuations?

link|improve this question
I doubt you need to punctuate those words ;) – Blender May 26 '11 at 18:47
Couldn't you use some other character instead of punctuations? – BlueEel May 26 '11 at 18:50
feedback

1 Answer

up vote 1 down vote accepted

If you are using preg_split() to split up your string, consider using the PREG_SPLIT_DELIM_CAPTURE flag to capture the punctuation with the matches.

Consider:

$str = "This. string/ has? punctuation!";
print_r(preg_split('/(\W+)/', $str, -1, PREG_SPLIT_DELIM_CAPTURE));

/*
  Array
  (
      [0] => This
      [1] => . 
      [2] => string
      [3] => / 
      [4] => has
      [5] => ? 
      [6] => punctuation
      [7] => !
      [8] => 
  )
*/

See http://php.net/preg_split for more information.

link|improve this answer
Thanks a lot!Thats exactly what I was looking for. – Shyam May 26 '11 at 19:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.