运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>Regex Modifier: [co]</h1> <p>How many occurences of the letters "c" or "o" are in the text "W3Schools.com":</p> <?php $txt = "W3Schools.com"; $pattern = "/[co]/"; echo preg_match_all($pattern, $txt); ?> <p>The matches were found here:</p> <?php echo preg_replace($pattern, "#", $txt); ?> <p>(Each match was replaced by a # character)</p> </body> </html>
正则表达式修饰符: [co]
文本 "W3Schools.com" 中字母 "c" 或 "o" 出现了多少次?
5
匹配结果在这里
W3S#h##ls.##m
(每个匹配项都被替换为 # 字符)