Oracle
 sql >> Base de données >  >> RDS >> Oracle

Regex pour supprimer les mots de la liste noire d'une phrase

Simple, et ça marche :

String badStrRegex = "\\WBill Joseph\\W?";
Pattern pattern = Pattern.compile(badStrRegex);
Matcher m = pattern.matcher(testStr);  //testStr is your string under test
boolean isBad = m.find();

Ça marche!! Testé par rapport à toutes vos entrées.