static String sanitize(String value) { return value.isEmpty || !value.contains(".") ? value : value.toString().split(".").last; }