运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>Regex Modifier: [0-9]</h1> <p>How many digits are in the text "W3Schools has been live since 1999"?:</p> <?php $txt = "W3Schools has been live since 1999"; $pattern = "/[0-9]/"; 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>
正则表达式修饰符: [0-9]
文本“W3Schools 自 1999 年起上线”中包含多少位数字?
5
匹配项在此处找到
W#Schools has been live since ####
(每个匹配项都被替换为 # 字符)