https://programmers.co.kr/learn/courses/30/lessons/81301
class Solution {
public int solution(String s) {
String[] number = {"0","1","2","3","4","5","6","7","8","9"};
String[] word = {"zero" , "one" , "two" , "three" , "four" , "five" , "six" , "seven" , "eight" , "nine"};
for (int i = 0; i<10; i++) {
s = s.replaceAll(word[i], number[i]);
}
return Integer.parseInt(s);
}
}