대문자 찾기
나의 풀이
function solution(str) { let answer = 0; str = str.replace(/[a-z]/g,''); // 정규식으로 소문자 제거 answer = str.length; return answer; } let str = "KoreaTimeGood"; console.log(solution(str));
다른 풀이
function solution(str) { let answer = 0; for(let x of str) { let num = x.charCodeAt(); // ASCII 번호로 치환 if(num >= 65 && num <= 90) answer++; // 소문자: 65 ~ 90 // if(x === x.toUpperCase()) answer++; // x.toUpperCase() 대문자로 변환 } return answer; } let str = "KoreaTimeGood"; console.log(solution(str));
참고
ASCII NUMBER
대문자 : 65 ~ 90
소문자 : 97 ~ 122
Author And Source
이 문제에 관하여(대문자 찾기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@_jackson/대문자-찾기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)