1.計算字串的長度
複製代碼 代碼如下:var txt="Hello World!"
document.write(txt.length)
2.indexOf() 方法
如何使用 indexOf() 來定位字串中某一個指定的字元首次出現的位置。 複製代碼 代碼如下:<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>