2

我想像下面的例子一样编辑字符串:

$str = '$variable$123'

转换成

$str = '$variable$*123'

我尝试了以下代码:

<?php

$str = '$variable$123';
$str= preg_replace('/(\$\w*\$.[0-9]*)+/i', '$1*$2', $str);
echo $str;

?>

但是没有得到我想要的...

请帮忙.....

4

2 回答 2

3
$str = preg_replace('/(\$\w+\$)(\d+)/', '$1*$2', $str);

可能适合评论中给出的示例的另一个(更简单)版本

$str = preg_replace('/(\$\w+\$)/', '$1*', $str);
于 2013-02-05T10:40:12.957 回答
1

我得到了答案。

<?

$str1 = '$variable$123$variable2$';    
echo replace($str1);

$str2 = '$variable$123';
echo replace($str2);

function replace($str)
{
    $str = preg_replace('/(\$\w*\$)(\d+)/i', '$1*$2', $str);
    $str = preg_replace('/(\d+)(\$\w*\$)/i', '$1*$2', $str);        
    return $str
}

?>

输出

$variable$*123*$variable2$

$variable$*123

于 2013-02-05T11:11:25.540 回答