<?php $string = "April 15, 2003"; $pattern = "/(w+) (d+), (d+)/i"; $replacement = "${1}1,$3"; print preg_replace($pattern, $replacement, $string); /* Output ====== April1,2003 */ ?> |
<?php $string = "The quick brown fox jumped over the lazy dog."; $patterns[0] = "/quick/"; $patterns[1] = "/brown/"; $patterns[2] = "/fox/"; $replacements[2] = "bear"; $replacements[1] = "black"; $replacements[0] = "slow"; print preg_replace($patterns, $replacements, $string); /* Output ====== The bear black slow jumped over the lazy dog. */ /* By ksorting patterns and replacements, we should get what we wanted. */ ksort($patterns); ksort($replacements); print preg_replace($patterns, $replacements, $string); /* Output ====== The slow black bear jumped over the lazy dog. */ ?> |
<?php $patterns = array ("/(19|20)(d{2})-(d{1,2})-(d{1,2})/", "/^s*{(w+)}s*=/"); $replace = array ("\3/\4/\1\2", "$\1 ="); print preg_replace ($patterns, $replace, "{startDate} = 1999-5-27"); ?> |
<?php preg_replace ("/(</?)(w+)([^>]*>)/e", "'\1'.strtoupper('\2').'\3'", $html_body); ?> |
<?php // $document 应包含一个 HTML 文档。 // 本例将去掉 HTML 标记,javascript 代码 // 和空白字符。还会将一些通用的 // HTML 实体转换成相应的文本。 $search = array ("'<script[^>]*?>.*?</script>'si", // 去掉 javascript "'<[/!]*?[^<>]*?>'si", // 去掉 HTML 标记 "'([rn])[s]+'", // 去掉空白字符 "'&(quot|#34);'i", // 替换 HTML 实体 "'&(amp|#38);'i", "'&(lt|#60);'i", "'&(gt|#62);'i", "'&(nbsp|#160);'i", "'&(iexcl|#161);'i", "'&(cent|#162);'i", "'&(pound|#163);'i", "'&(copy|#169);'i", "'&#(d+);'e"); // 作为 PHP 代码运行 $replace = array ("", "", "\1", """, "&", "<", ">", " ", chr(161), chr(162), chr(163), chr(169), "chr(\1)"); $text = preg_replace ($search, $replace, $document); ?> |