使用 php preg_match,警告

发布于 2024-12-09 14:24:52 字数 486 浏览 0 评论 0原文

regex:^([^\/])/([A-Z])([^\/]+)/([^\/]+)/$

要匹配的字符串: http://127.0.0.1:8008/BeiJing/FangChan/

我使用 preg_match() 进行测试

if (preg_match('/^([^\/])/([A-Z])([^\/]+)/([^\/]+)/$/',"http://127.0.0.1:8008/BeiJing/FangChan/",$match))
    print $match[0];
else
    print 'not match';

,但收到警告: preg_match() [function.preg-match] : 未知修饰符 '(' 谁能帮我编写这个正则表达式,使其对 preg_match 函数有效?我尝试了很多不同的想法,但我对正则表达式真的不太了解。

regex:^([^\/])/([A-Z])([^\/]+)/([^\/]+)/$

string to match: http://127.0.0.1:8008/BeiJing/FangChan/

I use preg_match() to test

if (preg_match('/^([^\/])/([A-Z])([^\/]+)/([^\/]+)/$/',"http://127.0.0.1:8008/BeiJing/FangChan/",$match))
    print $match[0];
else
    print 'not match';

but get a Warning: preg_match() [function.preg-match]: Unknown modifier '('
Can anyone help me write this regex so it's valid for the preg_match function? I've tried a ton of different ideas but I'm really not too knowledgeable with regex.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不…忘初心 2024-12-16 14:24:52

/ 是指示示例中模式的开始和结束的内容,模式后面的任何内容都是修饰符。

所以这样:

/^([^/])/([A-Z])([^/]+)/([^/]+)/$/

读作如下:

/^([^/])/

使用修饰符 ([AZ])([^/]+)/([^/]+)/$/

你必须转义所有 /< /code> 或更改开始和结束指示符:

#^([^/])/([A-Z])([^/]+)/([^/]+)/$#

/ is what is indicating the start and the end of the pattern in your example, whatever comes after the pattern is a modifier.

So this:

/^([^/])/([A-Z])([^/]+)/([^/]+)/$/

Gets read as this:

/^([^/])/

With modifiers ([A-Z])([^/]+)/([^/]+)/$/

You have to escape all /'s or change the start and end indicator:

#^([^/])/([A-Z])([^/]+)/([^/]+)/$#
满天都是小星星 2024-12-16 14:24:52

您需要通过在其前面放置 \ 来转义您使用的 / 。或者将第一个和最后一个 / 更改为其他内容,例如:

if (preg_match('|^([^/])/([A-Z])([^/]+)/([^/]+)/$|',"http://127.0.0.1:8008/BeiJing/FangChan/",$match)) print $match[0]; else

但是此正则表达式将与 url 不匹配。

You need to escape the / you use by putting a \ in front of it. Or change the first and last / to something else like:

if (preg_match('|^([^/])/([A-Z])([^/]+)/([^/]+)/$|',"http://127.0.0.1:8008/BeiJing/FangChan/",$match)) print $match[0]; else

But this regexp will not match the url.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文