我想创建代码框,我可以在其中应用更改。如果我在$var= "word";
这里[code]
内有[/code]
,我会将$var
更改为红色,将"word"
更改为绿色。
我使用preg_replace
来选择[code]
[/code]
之间的内容。
$codebox = preg_replace("/\[code\](.*?)\[\/code\]/","$1",$string);
事情是preg_replace我可以做外人改变(到整个代码)。我想对这些[code]
[/code]
内的内容进行更改。喜欢:背景颜色,所有文字颜色,所有文字字体,所有文字字体 - 重量等...这意味着我需要把它拿出来应用更改然后把它放回去。
我希望能够使用str_replace
上的preg_replace
和$1
功能,而不是$string
。
例如将"word"
更改为绿色。我会用
preg_replace("/(\".*?\")/","<span style='color: #090;'>$1</span>",$string)
我无法在preg_replace
内使用preg_replace
,我可以吗?
我不知道我是否在这里使用了错误的功能,或者有办法做到这一点。
你可能会发现我的模式不对,纠正我,我昨天才知道。
答案 0 :(得分:2)
使用preg_match
而不是preg_replace
首先提取代码时,在代码中定位代码会更简单一些:
$codebox = preg_match("/\[code\](.*)\[\/code\]/",$string,$matches);
$innercode = $matches[0];
// Then...
$innercode = preg_replace( ...
// Later on...
echo "[code]".$innercode."[/code]";
您替换了返回字符串,因此它们可以嵌套得很好。
另外,如果您不熟悉正则表达式,我建议您查看正则表达式转换器的文本。它帮助我更好地掌握了它们:
http://txt2re.com/index-php.php3?s= $熏肉%20 =%20%22good%22;&安培; -21和2和6&安培; -23&安培; 7和1安培; -22
答案 1 :(得分:2)
$string = '[code]$var = "word";[/code]';
$codebox = preg_replace_callback("/\[code\](.*?)\[\/code\]/",function($m){
// The following replacements are just a demo
$m[1] = preg_replace('/"([^"]+)"/', '"<span style="color:#0D0;">$1</span>"', $m[1]); // green value
$m[1] = preg_replace('/(\$\w+)/', '<span style="color:#F00;">$1</span>', $m[1]); // Red var name
$m[1] = str_replace(' = ', '<span style="color:#00F;"> = </span>', $m[1]); // blue = sign
return $m[1];
},$string);
echo $codebox;