endwith函數用於檢查給定的字串是否以指定字串的字元結尾,該函數的使用語法是「str.endsWith(searchString,length)」。
本文操作環境:Windows7系統、javascript1.8.5版、Dell G3電腦。
JavaScript中的str.endsWith()函數用於檢查給定的字串是否以指定字串的字元結尾。下面我們就來具體看看endwith函數的使用方法。
我們先來看endsWith()函數的基本語法
str.endsWith(searchString,length)
endsWith()函數的第一個參數是searchString字串,它將在給定字串的末尾進行搜尋。函數的第二個參數是length,它決定從搜尋searchString開始的給定字串的長度。
如果找到searchString,則此函數傳回布林值true,否則傳回布林值false
#下面我們來看endsWith()函數具體的範例
程式碼如下
檢查字串str是否以day.結尾
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script> function func() { var str = 'It is a great day.'; var value = str.endsWith('day.'); document.write(value); } func(); </script> </body> </html>
輸出結果為:true
檢查字串str是否以great結尾
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script> function func() { var str = 'It is a great day.'; var value = str.endsWith('great'); document.write(value); } func(); </script> </body> </html>
輸出結果為:false
檢查字串str是否在指定的索引13處以great結尾
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <script> function func() { var str = 'It is a great day.'; var value = str.endsWith('great',13); document.write(value); } func(); </script> </body> </html>
輸出結果為:true
這篇文章到這裡就全部結束了,更多精彩內容大家可以關注php中文網的其他相關欄位教學! ! !
以上是endwith函數怎麼使用的詳細內容。更多資訊請關注PHP中文網其他相關文章!