Php Regular Expression preg_replace_callback function usage example

Source: Internet
Author: User
Tags php regular expression
This article describes the usage of the php Regular Expression preg_replace_callback function. The example analyzes the skills related to the regular expression replacement of the preg_replace_callback function. For more information, see

This article describes the usage of the php Regular Expression preg_replace_callback function. The example analyzes the skills related to the regular expression replacement of the preg_replace_callback function. For more information, see

This article describes the usage of php Regular Expression preg_replace_callback. Share it with you for your reference. The specific implementation method is as follows:

Php regular expressions are powerful. This example demonstrates the usage of the preg_replace_callback function.

// Define a dummy text, for testing... $ Text = "Title: Hello world! \ N "; $ Text. =" Author: Jonas \ n "; $ Text. =" This is a example message! \ N "; $ Text. = "Title: Entry 2 \ n"; $ Text. = "Author: Sonja \ n"; $ Text. = "Hello world, what's up! \ N "; // This function will replace specific matches // into a new formfunction RewriteText ($ Match) {// Entire matched section: // --> /... /$ EntireSection = $ Match [0]; // --> "\ nTitle: Hello world! "// Key // --> ([a-z0-9] +) $ Key = $ Match [1]; // --> "Title" // Value // --> ([^ \ n \ r] +) $ Value = $ Match [2]; // --> "Hello world! "// Add some bold () Tags to around the key to return''. $ Key .':'. $ Value;} // The regular expression will extract and pass all "key: value "pairs to // the" RewriteText "function that is definied above $ NewText = preg_replace_callback ('/[\ r \ n] ([a-z0-9] + ): ([^ \ n \ r] +)/I ', "RewriteText", $ Text); // Print the new modified textprint $ NewText;

I hope this article will help you with php programming.

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.