fork download
  1. class Ideone {
  2. public static void main (String[] args) {
  3. String s = "acd1234567890xyz";
  4. s = s.replaceAll("[0-9]", "0");
  5. System.out.println(s);
  6. }
  7. }
Success #stdin #stdout 0.07s 33324KB
stdin
Standard input is empty
stdout
acd0000000000xyz