Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in Java by (4k points)

Trying to remove all letters and characters that are not 0-9 and a period. I'm using Character.isDigit() but it also removes decimal, how can I also keep the decimal?

1 Answer

0 votes
by (46k points)

Impliment this code:

String str = "a12.334tyz.78x";

str = str.replaceAll("[^\\d.]", "");

Now str will contain "12.334.78". this code:

Browse Categories

...