Returns only numeric characters from the string.
String getNumericOnly({bool aFirstWordOnly = false}) { return validate().replaceAll(RegExp(r'[^0-9]'), ''); }