fork download
  1. class Ideone {
  2. static void main(String[] args) {
  3. def s = "abc123gh"
  4. def res = s.replaceAll(/\D+/, "")
  5. print(res)
  6. }
  7. }
  8.  
Success #stdin #stdout 0.86s 4456448KB
stdin
Standard input is empty
stdout
123