使用php转义正则表达式中的特殊字符
我如何在 preg_match 正则表达式中转义这样的字符: '
(
)
,因为我运行此代码时遇到问题:
preg_match("'javascript:window.open('(.*?)')'si", $source, $export);
$source
变量具有以下值: javascript:window.open('http://www.google.com')
并且我想取出 http://www.google.com 并将其放入 $export
中。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
sscanf
$link 字符串>文档:(演示)好处是语法是比正则表达式更容易理解,您可以将值分配给直接变量。
如果您想使用正则表达式,则需要引用特殊字符(
preg_quote
文档)在创建模式之前。这需要更多的工作,因为您必须在运行之前构建正则表达式模式:Demo
这将导致以下模式:
或作为有效的 PHP 字符串:
或您的示例:
You can just extract your
$link
string usingsscanf
Docs:(Demo) The benefit is that the syntax is easier to understand than with regular expressions and you can assign values to variables directly.
In case you want to use regular expressions, you need to quote special characters (
preg_quote
Docs) before you create your pattern. This needs more work, as you must build the regex pattern prior running it:Demo
This will result in the following pattern:
Or as a valid PHP string:
or your example:
您始终可以使用反斜杠 (
\
) 转义字符。在你的情况下:You can always escape characters with the backslash (
\
). In your case:您必须通过
\
来排除任何特殊字符。请尝试这个:You have to excape any special character by
\
. Please try this:使用此字符在您要使用的字符之前进行转义
"\"
如果字符串中有字符 (.,:,(,),\,/,-,[,],#,...) 并且您希望它们与字符串匹配你需要将它们放在模式中 scape by "\"
Use this character to scape before the character you want to use
"\"
If there are characters (.,:,(,),\,/,-,[,],#,...) in your string and you want them to match the string you need to have them in the pattern scape by "\"