如何在 PHP 中检查字符串的日期格式?
我想检查字符串是否具有这种时间格式: Y-m-d H:i:s 如果没有,则执行一些代码,例如 if here will be condition do { this } else do { this } 如何…
php preg_match 匹配错误的主题?
我真的不明白为什么,但是 PHP preg_match 在某些主题中匹配了错误的主题。 例如,在这 4 行中,我希望得到“匹配 2”作为输出,但我得到的都是匹配的…
使用正则表达式匹配文件中的数据
我从中提取数据的文件包含以下信息 <"DATA" 10.21 ^"DATA" 81.39 _"DATA" 38.71 "DATA" 84.19 使用 preg_match,如何从每个文件中提取值? 我尝试了 $…
警告:preg_match() [function.preg-match]:未知修饰符 '(' in
当我尝试验证用户名时收到此错误消息。以下 pregexp 字符串是这样的: ^([a-zA-Z])[a-zA-Z_-]*[\w_-]*[\S]$|^([a-zA-Z] )[0-9_-]*[\S]$|^[a-zA-Z]*[\S…
检查 php 中的重叠偏移量
如何区分字符串中具有重叠偏移量的单词。 例如,我有一个字符串: $s = "The famous team violin will showcase there violin talent to the fans who…
preg_match条件问题
我不想检查字符串 ($nick_2) 是否有 " 或 ñ 这是正确的吗?我无法让它工作 if ( (strlen($nick_2) >= 3) && (strlen($nick_2) <= 25) && (!preg_match…
preg_match_all 获取 2 个字符串之间的文本
我想得到两个字符串之间的字符串。 background:url(images/cont-bottom.png) no-repeat; 基本上我想获取 url( 和 ) 之间的所有文本 希望有人可以帮助…