Oracle
 sql >> Database >  >> RDS >> Oracle

Regex per rimuovere le parole nella lista nera da una frase

Semplice, e funziona:

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();

Funziona!! Testato contro tutti i tuoi input.