Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Explanation of search method of js regular expression

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article introduces the knowledge of "explaining the search method of js regular expressions". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Function: returns the location of the first substring that matches what the regular expression is looking for

Syntax: stringObj.search (rgExp) stringObj required rgExp regular expression

Return value: the search method indicates whether there is a corresponding match. If a match is found, the search method returns an integer value indicating the offset of the match from the beginning of the string. If no match is found, return-1

Sample code:

The copy code is as follows:

The / / search method indicates whether there is a corresponding match. If a match is found, the search method returns an integer value indicating the offset of the match from the beginning of the string. If no match is found, return-1

Var re=/ (/ d) (/ d) / d _ ram 2 _ r _ r / set regular expression

Var ostr= "11010111"; / / the string to be matched. The first position of the string starts at 0.

Var pos=ostr.search (re); / / perform string matching

If (pos==-1) {/ / if no match is found

[xss_clean] ("No match found")

}

Else {

Arr=ostr.match (re); / / match to find the matching content

[xss_clean] ("find the first match in" + pos+ ", and the match content is:")

[xss_clean] (arr [0]); / / output matching content

}

This is the end of the introduction to the search method of js regular expressions. Thank you for your reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report