I'm trying to remove some words in a string using regex using below program. It's removing properly but it's considering only case sensitive. How to make it as case in-sensitive. I kept (?1) in replaceAll method but it didn't work
package com.test.java;
public class RemoveWords {
public static void main(String args[])
{
// assaign some words to string
String sample ="what Is the latest news today in Europe? is there any thing special or everything is common.";
System.out.print(sample.replaceAll("( is | the |in | any )(?i)"," "));
}
}
OUTPUT:
what Is latest news today Europe? there thing special or everything common.