日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

JavaScript中带示例的字符串search()方法

發(fā)布時間:2025/3/11 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JavaScript中带示例的字符串search()方法 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

字符串search()方法 (String search() Method)

search() is method is a String method, it is used to check whether a substring exists in the given string or not. It returns the starting index of the substring from the string where substring exists. If substring does not exist in the string – it returns -1.

search()是一個String方法,用于檢查給定字符串中是否存在子字符串。 它從存在子字符串的字符串中返回子字符串的起始索引。 如果字符串中不存在子字符串,則返回-1。

Syntax:

句法:

String.search(substring);

Here, substring is the part of the string to be searched.

在此, 子字符串是要搜索的字符串的一部分。

Example:

例:

<html> <head> <title>JavaScipt Example</title> </head><body> <script> var str = "friends say Hello";var substr = "Hello"; var index = str.search(substr);if(index!=-1)document.write(substr + " found at " + index + " position.<br>");elsedocument.write(substr + " does not exist in the " + str + ".<br>");substr = "Hi";index = str.search(substr); if(index!=-1)document.write(substr + " found at " + index + " position.<br>");elsedocument.write(substr + " does not exist in the " + str + ".<br>"); </script> </body> </html>

Output

輸出量

Hello found at 12 position. Hi does not exist in the friends say Hello.

翻譯自: https://www.includehelp.com/code-snippets/string-search-method-with-example-in-javascript.aspx

總結(jié)

以上是生活随笔為你收集整理的JavaScript中带示例的字符串search()方法的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。