Home > Backend Development > PHP Tutorial > PHP regular preg_replace_callback function usage example_PHP tutorial

PHP regular preg_replace_callback function usage example_PHP tutorial

WBOY
Release: 2016-07-13 09:52:05
Original
834 people have browsed it

PHP regular preg_replace_callback function usage example

This article describes the usage of PHP regular preg_replace_callback function. Share it with everyone for your reference. The specific implementation method is as follows:

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

 ?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

// Define a dummy text, for testing...

$Text = "Title: Hello world!n";

$Text .= "Author: Jonasn";

$Text .= "This is a example message!nn";

$Text .= "Title: Entry 2n";

$Text .= "Author: Sonjan";

$Text .= "Hello world, what's up!n";

// This function will replace specific matches

// into a new form

function RewriteText($Match){

// Entire matched section:

// --> /.../

$EntireSection = $Match[0];

// --> "nTitle: Hello world!"

// Key

// --> ([a-z0-9] )

$Key = $Match[1];

// --> "Title"

// Value

// --> ([^nr] )

$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('/[rn]([a-z0-9] ): ([^nr] )/i', "RewriteText", $Text);

// Print the new modified text

print $NewText;

1

2 3

45 6 7 8 9 10
11
12
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
// Define a dummy text, for testing... $Text = "Title: Hello world!n"; $Text .= "Author: Jonasn"; $Text .= "This is an example message!nn"; $Text .= "Title: Entry 2n"; $Text .= "Author: Sonjan"; $Text .= "Hello world, what's up!n"; // This function will replace specific matches // into a new form function RewriteText($Match){ // Entire matched section: // --> /.../ $EntireSection = $Match[0]; // --> "nTitle: Hello world!" // Key // --> ([a-z0-9] ) $Key = $Match[1]; // --> "Title" // Value // --> ([^nr] ) $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 defined above $NewText = preg_replace_callback('/[rn]([a-z0-9] ): ([^nr] )/i', "RewriteText", $Text); // Print the new modified text print $NewText;
I hope this article will be helpful to everyone’s PHP programming design. http://www.bkjia.com/PHPjc/1009823.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1009823.htmlTechArticlePHP regular preg_replace_callback function usage example This article describes the usage of php regular preg_replace_callback function. Share it with everyone for your reference. The specific implementation method is as follows: p...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template