<strong>1. 문자열 길이 계산<br></strong><div class="codetitle"> <span><a style="CURSOR: pointer" data="31063" class="copybut" id="copybut31063" onclick="doCopy('code31063')"><u>코드 복사</u></a></span> 코드는 다음과 같습니다.</div> <div class="codebody" id="code31063"> <br>var txt="Hello World!" <br>document.write(txt.length) <br> </div> <br><strong>2.indexOf() 메소드 <br></strong><br>indexOf()를 사용하여 문자열에서 지정된 문자가 처음 나타나는 위치를 찾는 방법입니다. <br><div class="codetitle"> <span><a style="CURSOR: pointer" data="22777" class="copybut" id="copybut22777" onclick="doCopy('code22777')"><u>코드 복사</u></a></span> 코드는 다음과 같습니다.</div> <div class="codebody" id="code22777"> <br><script type="text/javascript "> <br>var str="Hello world!" //wlowercase<br>document.write(str.indexOf("H") "<br />") //0 <br>document.write (str .indexOf("World") "<br />") //-1 <br>document.write(str.indexOf("world")) //6 <br></script> 🎜> <br> </div> <br>3.match() 메소드 <strong><br></strong> 문자열에서 특정 문자를 검색하고, 발견되면 해당 문자를 반환합니다. <br><br><div class="codetitle"><span><a style="CURSOR: pointer" data="751" class="copybut" id="copybut751" onclick="doCopy('code751')">코드 복사<u></u></a> 코드는 다음과 같습니다.</span></div> <div class="codebody" id="code751"><script type="text/javascript "> <br>var str="Hello world!" <br>document.write(str.match("world") "<br />") //world <br>document.write(str. match(" World") "<br />") //null <br>document.write(str.match("worldld") "<br />") //null <br>document.write(str.match("world") "<br />") //null <br>document. write(str .match("world!")) //world! <br><br> </div> <br>4. 문자열의 문자를 바꾸는 방법 🎜><strong>replace() 메서드를 사용하여 문자열의 특정 문자를 다른 문자로 바꿉니다. <br></strong><br><div class="codetitle"> <span>코드 복사<a style="CURSOR: pointer" data="40272" class="copybut" id="copybut40272" onclick="doCopy('code40272')"><u></u> 코드는 다음과 같습니다.</a></span> </div><script type="text/javascript "> <div class="codebody" id="code40272">var str="cnblogs.com을 방문하세요!" <br>document.write(str.replace(/cnblogs.com/,"Mamogu.com")) <br></script> <br><br> </div>