To intercept the PHP specified string code, how to solve

Source: Internet
Author: User
To intercept the PHP specified string code
Has the following HTML string:
Aaaa
bbbb
Cccc
dddd

To output the following:
Aaaa
dddd

That is, delete the middle of two
The previous content and
The simple code, because the output is also HTML, not array mode.
------Solution--------------------
$s = ' aaaa
bbbb
Cccc
dddd
';
echo preg_replace ('/
\w+/', ', $s, 2);
Aaaa
dddd


------Solution--------------------
1
echo preg_replace ('/
[^<]+/', ', $s, 2];


2
echo preg_replace ('/\ (. +?\)/', ', $s);

------Solution--------------------
echo Preg_replace_callback ('/

function foo ($m) {
return Strpos ($m [0], ' (')!== false? Preg_replace ('/\ (. +?\)/', ', $m [0]): ';
}
  • 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.