반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | var apple = "apple"; document.write(apple.bold()); // .bold() 진하게 var ball = "ball"; document.write(ball.link("http://www.naver.com")) // .link(url) 링크 var cat = "cat"; document.write(cat.length); // .length 글자 개수 var deer = "deer"; document.write(deer.toUpperCase()); // .toUpperCase() 대문자로 var elephant = "elephant"; document.write(elephant.indexOf("h")) // .indexOf("?") 첫번째 ?를 찾아 인덱스 번호 표기(없으면 -1) var fall = "fall"; document.write(fall.lastIndexOf("l")) // .listIndexOf("?") 마지막 ?을 찾아 인덱스 변호 표기(없으면 -1) var green = "green"; document.write(green.charAt(4)) // .charAt(?) ?번째 인덱스의 문자를 표기 var hippocrates = "hippocrates"; document.write(hippocrates.substring(4,6)) // substring(?,!) ?번째 인덱스와 !번째 인덱스 사이 문자 표기 var icecream = "icecream"; document.write(icecream.substr(4,2)) // subst(?,!) ?번째 인덱스 부터 !글자 표기 var jelly = "jelly"; document.write(jelly.replace("ll","ekfjs")) // replace("?","!") ?를 !로 변환 var korinthos = "korinthos"; document.write(korinthos.slice(4,6)) // slice(?,!) ?번째 인덱스부터 !까지 잘라 변환 var legends = "legends"; document.write(legends.concat("good1")) // concat("?") 뒤에 ?를 결합 var map = "map of greece"; document.write(map.split(" ")) // split(" ") 공백을 기준으로 데이터를 ,로 분리 | cs |
만약 문자열에 공백이 있다면 공백도 인덱스를 가져감
'Javascript' 카테고리의 다른 글
자바스크립트 배열 사용하여 css 제어하기 (0) | 2018.04.24 |
---|---|
자바스크립트 문제3 (0) | 2018.04.22 |
자바스크립트 문제2 (0) | 2018.04.21 |
자바스크립트 문제1 (0) | 2018.04.20 |
continue 문 (0) | 2018.04.19 |