yoni
문자열 한글자씩 비교 본문
int noMasking = 7;
// 일련번호 마스킹 ""값일때의 분기
if ("".equals(decodeStr)){
String maskStudentKey = "";
resultMap.put("studentKeyMask", maskStudentKey);
}
else if (decodeStr.length() > 0){
String pattern = decodeStr.substring(decodeStr.length()-11);
String maskedStr = "";
for (int i = 0; decodeStr.length() > i; i++){
if(i < noMasking){
maskedStr += decodeStr.charAt(i);
}else{
maskedStr += "*";
}
}
}
model.addObject("result", resultMap);
return model;
String a = "abcdefgh" 이렇게 있으면 한글자씩 가져와서 비교하는것 charAt();
var fileDownView = document.location.href.substring(document.location.href.lastIndexOf("/") +1, document.location.href.length);
'코딩' 카테고리의 다른 글
map형과 list형 (0) | 2018.06.18 |
---|---|
쿼리 결과값에 문자 넣어주기 CONCAT (0) | 2018.06.11 |
URL 우회 하는 방법 (0) | 2018.05.16 |
java equals (0) | 2018.04.02 |
node별로 서버의 값을 넣어줄때 (0) | 2017.09.28 |
Comments