Jump to content

preg_replace


hvle

Recommended Posts

strange behavior in preg_replace:

$val1 = "{BODY}";
$val2 = '$453.00;

now I want to replace '{BODY}' with $val2 so:

echo preg_replace('/{BODY}/',$val2,$val1);

will echo '3.00'
where is '$45' gone?

is this a bug or i am doing something wrong?

thanks
Link to comment
Share on other sites

the '$' symbol is a special character when working with Regular Expressions - Escape it and you should be fine.
[code]<?php
$val1 = "{BODY}";
$val2 = '\$453.00';

echo preg_replace('/{BODY}/',$val2,$val1);
?>[/code]
Link to comment
Share on other sites

From the manual:

[quote]
Replacement may contain references of the form \\n or (since PHP 4.0.4) [b]$n[/b], with the latter form being the preferred one. Every such reference will be replaced by the text captured by the n'th parenthesized pattern. [b]n can be from 0 to 99[/b], and \\0 or $0 refers to the text matched by the whole pattern. Opening parentheses are counted from left to right (starting from 1) to obtain the number of the capturing subpattern.
[/quote]

Thus, your replace was looking for backreference $45.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.