fork download
  1. import java.lang.*;
  2. import java.text.*;
  3.  
  4. class Ideone
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. System.out.println(Normalizer.normalize("{abc}", Normalizer.Form.NFD).replaceAll("[^\\p{ASCII}]", ""));
  9. // a saída será {abc}, ou seja, o código não removeu as chaves
  10. }
  11. }
Success #stdin #stdout 0.05s 2184192KB
stdin
Standard input is empty
stdout
{abc}