JavaScript 문자열 처리 함수 사용 소결

1.문자열 의 길이
 
var txt="Hello World!"
document.write(txt.length)
를 계산 합 니 다.2.index Of()방법 은 index Of()를 사용 하여 문자열 에 지정 한 문자 가 처음으로 나타 난 위 치 를 어떻게 찾 습 니까?
 
<script type="text/javascript">
var str="Hello world!" //w
document.write(str.indexOf("H") + "<br />") //0
document.write(str.indexOf("World") + "<br />") //-1
document.write(str.indexOf("world")) //6
</script>
3.match()방법 은 문자열 의 특정한 문 자 를 찾 고 찾 으 면 이 문 자 를 되 돌려 줍 니 다.
 
<script type="text/javascript">
var str="Hello world!"
document.write(str.match("world") + "<br />") //world
document.write(str.match("World") + "<br />") //null
document.write(str.match("worlld") + "<br />") //null
document.write(str.match("world!")) //world!
</script>
4.문자열 의 문 자 를 어떻게 바 꿉 니까?-replace()는 replace()방법 으로 문자열 에서 일부 문자 로 다른 문 자 를 바 꿉 니 다.
 
<script type="text/javascript">
var str="Visit cnblogs.com!"
document.write(str.replace(/cnblogs.com/,"Mamogu.com"))
</script>

좋은 웹페이지 즐겨찾기