1:concat() 將兩個或多個字元的文字組合起來,傳回一個新的字串
#1 | ##var f1 ="hello";|
var f2="world"; | |
# document.write(f1.concat(f2)) //hello world |
var f3="hello world" | ##2 |
#3 | |
4 | |
#console.log(f3.indexOf('hello')) / /0 |
Of區分大小寫
##3:charAt() – 傳回指定位置的字元。
var f4="hello world"; | |
console.log(f4.charAt(1)) //e | |
console.log(f4) //hello world |
var f3="hello world" | |
console. log(f3.lastIndexOf('world')) //6 | |
console.log(f3.lastIndexOf('World')) / /-1 | |
console.log(f3.lastIndexOf('hello')) //0 |
var f5="hello world" | |
console.log(f5.substring(3)) //lo world | |
console.log(f5.substring(3,8) ) //lo wo |
7:replace() – 用來找出符合一個正規表示式的字串,然後使用新字串取代相符的字串。
8:search() – 執行一個正規表示式匹配查找。如果查找成功,則傳回字串中匹配的索引值。否則返回 -1 。
9:slice() – 提取字串的一部分,並傳回一個新字串。 (參數可以為負數)
var f6="hello world" | ##2 |
#3 | |
2 | |
3 | |
4 | |
#
以上是對JS操作字串的方法匯總的詳細內容。更多資訊請關注PHP中文網其他相關文章!