日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

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

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

字符串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

總結

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

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。