Built-in objects in JavaScript: RegExp objects

Source: Internet
Author: User

I. Definition of REGEXP

The RegExp object is used to store the retrieval mode. The search mode for creating RegExp objects is as follows:

var mypattern=new RegExp (pattern,attributes);

(1) parameter pattern is a string that specifies the pattern of a regular expression or other regular expression

(2) The parameter attributrs is an optional string that contains the attribute "G", "I", "M", respectively, to specify global matching, case-sensitive matching, and multi-line matching.

Second, the method of RegExp

A total of three methods: Test (), exec (), compile ()

1, Test (): Retrieves the value specified in the string, returns True or False

Example


2. EXEC (): Retrieves the value specified in the string, but returns the value found

Example


3, compile (): Used to change the RegExp retrieval mode

var patt1=new RegExp ("E");d Ocument.write (Patt1.test ("The Best things on life is Free");p att1.compile ("D"); document.write (Patt1.test ("The best things in life is free");

Built-in objects in JavaScript: RegExp objects

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.