ppotatoG


Back to all posts

숫자 문자열과 영단어

Written by ppotatoG & Posted on January 8th, 2022

숫자 문자열과 영단어

제출한 답

s의 값을 replace로 바꿔주면서 Number를 사용해 숫자형으로 형변환

function solution(s) {
return Number(
s
.replace(/zero/g, 0)
.replace(/one/g, 1)
.replace(/two/g, 2)
.replace(/three/g, 3)
.replace(/four/g, 4)
.replace(/five/g, 5)
.replace(/six/g, 6)
.replace(/seven/g, 7)
.replace(/eight/g, 8)
.replace(/nine/g, 9)
);
}

Posted on January 8th, 2022