Skip to content

Instantly share code, notes, and snippets.

@anderson-martins
Created August 14, 2012 17:30
Show Gist options
  • Save anderson-martins/3351032 to your computer and use it in GitHub Desktop.
Save anderson-martins/3351032 to your computer and use it in GitHub Desktop.
String replace ignore case
String target = "FOOBar";
target = target.replaceAll("(?i)foo", "");
System.out.println(target);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment