gpt4 book ai didi

java - 在 url 中使用正则表达式查找路径参数

转载 作者:行者123 更新时间:2023-11-29 07:42:52 24 4
gpt4 key购买 nike

从 url 中查找路径参数的正则表达式是什么?

http://localhost:8080/domain/v1/809pA8
https://localhost:8080/domain/v1/809pA8

想通过正则表达式从上面的URL中获取值(809pA8),java是首选。

最佳答案

我建议你做类似的事情

url.substring(url.lastIndexOf('/') + 1);

如果您真的更喜欢正则表达式,您可以这样做

Matcher m = Pattern.compile("/([^/]+)$").matcher(url);

if (m.find())
value = m.group(1);

关于java - 在 url 中使用正则表达式查找路径参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28472887/

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