Two regular expressions in Javascript

Source: Internet
Author: User

In Javascript, there are two ways to use regular expressions. One is to create an instance of a regular expression, but to use the regular expression related methods in the String object.
Regular Expression object
Two creation methods
Var my_regex =/[a-z] +/g;
Var my_regex = new ("[a-z] +", "g ");
Method
Exec (string), which is used to RegEx the string and returns the matching result.
Test (string) to test whether the string contains matching results
Regular Expressions in string objects
Method
Match (pattern) performs regular match based on pattern. If it matches, the matching result is returned. If it does not match, null is returned.
Search (pattern) performs regular match based on pattern. If a result is matched, the number of indexes is returned; otherwise,-1 is returned.
Replace (pattern, replacement) performs regular matching based on pattern and replaces the matching result with replacement.
Split (pattern) performs regular segmentation based on pattern and returns a split array.

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.