"JavaScript" Regular expression--non-greedy mode intercepts any string of notes __java

Source: Internet
Author: User

Sodino
Article Listing 1. Scene 2. Regular Expression 13. Regular Expression 24. Troubleshoot problem 5. Regular Expression 36. Conclusion Scene

To intercept the following string for two {title:***,url:***}.

1 2 3 4 5
<script> {title: ' RegExp object reference manual ', url: ' http://sodino.com/regexp.asp '}, {title: ' w3cschool script ', url: ' http:// Www.w3cSchool.com '}, {} </script>
Regular expression of a
1 2 3 4 5 6 7 8 9 10
var string = ' <script> ' + ' {title: ' RegExp object reference manual ', url: ' http://sodino.com/regexp.asp '}, ' + ' {title: ' W3cschool Script ', url: ' http://www.w3cSchool.com '}, ' + ' {} ' + ' </script> '; var reg =/\{. +\}/g; The regular expression var result = string. Match (REG); Console. Log (result);

This is undoubtedly a full match, that is, the output is the entire contents of the first {to the last}:

1 2
D: \github \nivovin>node test.js [' {title: \ ' RegExp object reference manual \ ', url: \ ' http://sodino.com/regexp.asp \ '}, {title: \ ' The Consortium School script \ ', url: \ ' http://www.w3cSchool.com \ '}, {} ']
Regular Expression two

The book says that after the expression is added, it's not a greedy pattern. That is, n? matches a string containing 0 or one n.
So the current thinking is to match only one}, then modify the expression to read as follows:

 
1
 
var reg =/\{.+\}?/g;

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.