gpt4 book ai didi

regex - 正则表达式 : Matching text up to last index of character

转载 作者:可可西里 更新时间:2023-11-01 16:52:42 25 4
gpt4 key购买 nike

例如:

http://foobar.com/foo/bar/foobar.php

从这个地址,我需要提取以下内容:

http://foobar.com/foo/bar

我已经尝试使用以下正则表达式:

(?<namespace>.*)/.*?

但是返回值是

http:

有人可以帮忙吗?谢谢。

最佳答案

试试这个:

^(?<namespace>.*)/[^/]+$

快速解释:

^                    # the start of input
(?<namespace>.*)/ # zero or more chars followed by a '/' (which the last '/')
[^/]+ # one or more chars other than '/'
$ # the end of input

关于regex - 正则表达式 : Matching text up to last index of character,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7262547/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com