how to remove all alpha charaters from string in dart code example
Example: java remove non numbers from string
String str = "a12.334tyz.78x";
str = str.replaceAll("[^\\d.]", "");
String str = "a12.334tyz.78x";
str = str.replaceAll("[^\\d.]", "");