So I want check if a string contains any of these words: ban,bad,user,pass,stack,name,html
If it contains any of the words I need to echo the number of bad words
str = 'Hello my name is user';
thanks
|
So I want check if a string contains any of these words: ban,bad,user,pass,stack,name,html If it contains any of the words I need to echo the number of bad words
thanks
| |||||||||||||||||
feedback
|
|
I think something like this would work:
This creates an array of banned words, and uses a regular expression to find instances of these words:
Next, the code checks if any matches were found. If there are, it uses Is this what you're looking for? | ||||
feedback
|
|
This is what you want.
| |||||
feedback
|
This is your best bet. As stated at the beginning you can control your regex. This is directly from php.net | |||
|
feedback
|
Hope this can help.. you can put all the bad words in bad_words.txt file. arrange the bad words in txt as: bad_words1 | bad_words2 | bad_words3 | bad_words4 ... Note: you can also put something like: bad words 1 | bad words 2 | bad words 3 as long as its in the "|" format. | |||
|
feedback
|