anima icon indicating copy to clipboard operation
anima copied to clipboard

关于methodToFieldName方法,methodName.replace("get", "")问题

Open cotide opened this issue 4 years ago • 0 comments

如果属性为TargetId, 使用methodToFieldName方法问题

 public static String methodToFieldName(String methodName) {
        return capitalize(methodName.replace("get", ""));
 }
String result =   "getTargetId".replace("get", "");
// 输出值为TarId,正确应该是TargetId

可以使用replaceFirst

String result =  "getTargetId".replaceFirst("get", "");
// 输出TargetId

cotide avatar Sep 26 '19 05:09 cotide