There are multiple string segments in a string to be matched that match regular expressions, so how can they be matched separately?

Source: Internet
Author: User
There are several string segments in a string to be matched that match the regular expression, how can they be matched separately
Example:

Regular expression: 1.+2

String to match 31326451226476142345

I hope I can match it.
132
12
142

Rather than
132
13264512
132645122
1326451226476142
12
122
...


I use Preg_match_all () seems to come up with the above-mentioned unwanted results

For advice


------Solution--------------------

$s = ' 31326451226476142345 ';
Preg_match_all ('/1.*2/u ', $s, $m);
Print_r ($m);

Array
(
[0] = = Array
(
[0] = 132
[1] = 12
[2] = 142
)

)
------Solution--------------------
Upstairs right, plus a big u anti-lazy
  • 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.