How can I use a regext to filter out a list of blacklisted(Obscene) words, such that if a black listed words is like \'Bill Joseph\'
Then \'I am Bill Josephine
Make sure the word is surrounded by a word boundary ".*\\b" + badWord + "\\b.*"
".*\\b" + badWord + "\\b.*"