Example of js RegExp Content Retrieval in text

Source: Internet
Author: User

In js, RegExp objects have three methods: test (), exec (), and compile (). They can all be used to find strings, the following is a summary of their usage.

Example 1: exec ()

1,

The Code is as follows: Copy code
<Script type = "text/javascript">
Var hyh = new RegExp ("w ");
Document.write(hyh.exe c ("Are there www. bKjia. c0m in this sentence ?"))
</Script>

Output result: w

2,

The Code is as follows: Copy code

<Script type = "text/javascript">
Var hyh = new RegExp ("e ");
Document.write(hyh.exe c ("Are there E in this sentence ?"))
</Script>

The output result is: null.


Example 2: test ()

1,

The Code is as follows: Copy code
<Script type = "text/javascript">
Var hyh = new RegExp ("e ");
Document. write (hyh. test ("Are there letters e in this sentence ?"));
</Script>

The output result is true.

2,

The Code is as follows: Copy code
<Script type = "text/javascript">
Var hyh = new RegExp ("e ");
Document. write (hyh. test ("Are there letters E in this sentence ?"));
</Script>

The output result is: false.


Example 3: compile ()

The Code is as follows: Copy code

<Script type = "text/javascript">
Var hyh = new RegExp ("e ");
Document. write (hyh. test ("there is no d in the text below, and this text contains e, haha "));
Hyh. compile ("d ");
Document. write (hyh. test ("the above section contains e "))
</Script>

The output is truefalse.

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.