我有一个字符串:
str =" 4 3"
,
我只需要在“4”之前而不是在 4 和 3 之间删除空格。
这是我为得到这个而编写的代码:“f4_ 3”。但它给出了“4 _3”。
private static String getFielName(String fieldName) {
String formattedName;
//here i need to delete the blanks before the '4'
formattedName = Character.isDigit(fieldName.charAt(0)) ? "f" + fieldName : fieldName;
return formattedName.trim().replace(' ', '_').replace(":", "").replace("°", "");
}