Suninatas Web1번
문제 소스를보면 result = Replace(str, "a","aad") result = Replace(result, "i","in") Replace() 함수는 Replace(str,"a","aad") str이라는 문자열 변수안에 a라는 문자가 있으면 aad 로 바꾼다 라는 뜻이다. result1 = Mid(result,2,2) result2 = Mid(result,4,6) Mid() 함수는 Mid(result,2,2) 일시 result라는 변수에서 왼쪽에서 2번째에서 2번만큼 짤라내겟다. 거꾸로생각해보면 result 1에서 a가 aad가 되고 거기서 두번째부터 두개를 가져오면 ad가 된다. result2를 생각해보면, 4번째부터 6개를 가져온게 min이 되어야 하고 in은 i가 바뀐 것이다.
2019. 7. 26.