使用此字符串“ ADACADABRA”。如何从Java中的字符串“ ADACADABRA”中提取“ CADA”。

以及如何提取“ /”和“”之间的ID?从下面的链接。

http://www.youtube-nocookie.com/embed/zaaU9lJ34c5?rel=0

输出应为:zaaU9lJ34c5

但应使用“ /”和“?”进行中。

最佳答案

and also how to extract the id between "/" and "?" from the link below.

http://www.youtube-nocookie.com/embed/zaaU9lJ34c5?rel=0

output should be: zaaU9lJ34c5


应该 :

String url = "http://www.youtube-nocookie.com/embed/zaaU9lJ34c5?rel=0";
String str = url.substring(url.lastIndexOf("/") + 1, url.indexOf("?"));

09-05 12:44