Ask Your Question
1

In PHP, what is the method to replace a specific group of matches with regular expression?

asked 2023-03-24 11:00:00 +0000

nofretete gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-03-16 22:00:00 +0000

lakamha gravatar image

The method to replace a specific group of matches with regular expression in PHP is preg_replace(). This function takes three arguments:

  1. The regular expression pattern to match.
  2. The replacement string.
  3. The input string to search.

If you want to capture a specific group of matches, you can enclose the pattern for that group in parentheses. You can then refer to that group in the replacement string using backreferences. The syntax for backreferences is \1, \2, \3, etc. where the number corresponds to the group number.

For example, if you want to replace all occurrences of the word "apple" with "orange", but only if it is preceded by the word "ripe", you could use the following code:

$input = "I have a ripe apple and a green apple."; $output = preg_replace("/(ripe\s)apple/", "$1orange", $input);

The output would be "I have a ripe orange and a green apple."

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-03-24 11:00:00 +0000

Seen: 9 times

Last updated: Mar 16 '22