java eliminate numbers from string

Solutions on MaxInterview for java eliminate numbers from string by the best coders in the world

showing results for - "java eliminate numbers from string"
Arda
24 Apr 2020
1firstname1 = firstname1.replaceAll("[0-9]","");
2