在Android中删除字符串部分之前和之后的所有内容

时间:2018-09-23 20:14:17

标签: java android

我想从URL获取Amazon产品ASIN,下面是一些示例:

https://www.amazon.com/Premium-Flagship-Lenovo-Processor-Bluetooth/dp/B07H15QHT6/ref=sr_1_2_sspa?s=pc&ie=UTF8&qid=1537733386&sr=1-2-spons&keywords=laptop&psc=1


https://www.amazon.com/Youve-Got-Crabs-Creators-Exploding/dp/B07BKLT9B5/ref=mp_s_a_1_1?ie=UTF8&qid=1537733019&sr=8-1-spons&pi=AC_SX236_SY340_FMwebp_QL65&keywords=games&psc=1

我想在/dp/之后获得该文本,并删除该文本之后的所有内容

B07BKLT9B5 and B07H15QHT6

2 个答案:

答案 0 :(得分:1)

您可以使用:

split("dp") 

获得2部分或使用substring()indexOf()方法。

答案 1 :(得分:0)

您可以做类似的事情

public String getCode(String s) {
    int pos = s.indexOf("/dp/"); // find the position of the string "/dp/" in the url
    String substr = s.substring(pos + "/dp/".length()); // get everyting after dp
    String[] parts = substr.split("/"); // split at every '/' character
    return parts[0]; // your result will be the first element of the array
}