如何从以下网址中提取 foo 并将其存储在varialbe中,在php中使用正则表达式?
http://example.com/pages/foo/inside.php
我搜索了相当多的答案,但大多数正则表达式的例子太复杂了我无法理解。
答案 0 :(得分:1)
preg_match('~pages/(.+?)/~', "http://example.com/pages/foo/inside.php", $matches);
echo $matches[1];
答案 1 :(得分:1)
如果第一部分是不变的:
$s = 'http://example.com/pages/foo/inside.php';
preg_match('@^http://example.com/pages/([^/]+).*$@', $s, $matches);
$foo = $matches[1];
主要部分是([^/]+)
,它匹配不斜杠(/
)的所有内容。也就是说,我们匹配直到找到下一个斜杠或字符串的结尾(如果“foo”部分可能是最后一个)。
答案 2 :(得分:1)
嗯,根据您希望提取foo
的规则,可能有多个解决方案。由于你还没有指定它,我猜你想要获取当前文件的文件夹名称(如果这是错误的,请扩展你的问题)。
<?php
$str = 'http://example.com/pages/foo/inside.php';
preg_match( '#/([^/]+)/[^/]+$#', $str, $match );
print_r( $match );
?>
答案 3 :(得分:0)
$str = 'http://example.com/pages/foo/inside.php';
$s=parse_url($str);
$whatiwant=explode("/",$s['path']);
print $whatiwant[2];