[Suninatas] 1번
str = Request(“str”) : 새로운 str 객체 생성 (Fetch API의 Request 함수?) Str_replace(변경대상문자, 변경하려는 문자, 문자를 replace할 문자열(변수)) result = replace(str, “a”, “aad”) : str에 있는 문자 a를 aad 문자열로 변경해서 result 변수에 저장 result = replace(result, “i”, “in”) : result 문자열의 문자 i를 문자열 in으로 바꾼 결과의 result를 result 변수에 저장 result1 = Mid(result, 2, 2) : result 문자열의 2번째(인덱스는 1번부터 시작) 문자부터 2개의 문자를 추출해서 result1 변수에 저장 result2 = Mid(resul..
WEB HACKING/Suninatas
2019. 9. 5. 17:50