我正在开发一个项目,我的API在其结尾处返回带有id的url,我想将其解压缩以用于另一个函数。这是示例url:
String advertiserUrl = http://../../.../uuid/advertisers/4 <<< this is the ID i want to extract.
目前我正在使用名为substring()的java字符串函数,但这不是最好的方法,因为ID可能会成为3位数字,而我只会得到它的一部分。继承了我目前的做法:
String id = advertiserUrl.substring(advertiserUrl.length()-1,advertiserUrl.length());
System.out.println(id) //4
它适用于这种情况,但如果id是例如“123”,我只会在使用子字符串后得到它为“3”,所以我的问题是:有没有办法用破折号“/”剪切/修剪字符串?让我说当前网址中的theres 5 /所以字符串在检测到第五个破折号后会被切断?任何其他合理的方法也会有所帮助。感谢。
url中的P.suuid也可能有所不同
答案 0 :(得分:5)
您不需要为此使用正则表达式。
使用String#lastIndexOf
和substring
代替:
String advertiserUrl = "http://../../.../uuid/advertisers/4";// <<< this is the ID i want to extract.
// this implies your URLs always end with "/[some value of undefined length]".
// Other formats might throw exception or yield unexpected results
System.out.println(advertiserUrl.substring(advertiserUrl.lastIndexOf("/") + 1));
<强>输出强>
4
<强>更新强>
要查找uuid
值,您可以使用正则表达式:
String advertiserUrl = "http://111.111.11.111:1111/api/ppppp/2f5d1a31-878a-438b-a03b-e9f51076074a/advertisers/9";
// | preceded by "/"
// | | any non-"/" character, reluctantly quantified
// | | | followed by "/advertisers"
Pattern p = Pattern.compile("(?<=/)[^/]+?(?=/advertisers)");
Matcher m = p.matcher(advertiserUrl);
if (m.find()) {
System.out.println(m.group());
}
<强>输出强>
2f5d1a31-878a-438b-a03b-e9f51076074a
答案 1 :(得分:1)
您可以在斜杠上拆分字符串并获取返回的数组的最后位置,或使用lastIndexOf(&#34; /&#34;)获取最后一个斜杠的索引,然后将其余的字符串。
答案 2 :(得分:1)
使用lastIndexOf()
方法,该方法返回指定字符最后一次出现的索引。
String id = advertiserUrl.substring(advertiserUrl.lastIndexOf('/') + 1, advertiserUrl.length());