有人可以通过示例帮助我理解这段代码。我一直在努力解决这个问题。
URLResource file = new URLResource("http://www.dukelearntoprogram.com/course2/data/manylinks.html");
for (String item : file.words())
{ String itemLower = item.toLowerCase();
int pos = itemLower.indexOf("youtube.com");
if (pos != -1) {
int beg = item.lastIndexOf("\"",pos);
int end = item.indexOf("\"", pos+1);
System.out.println(item.substring(beg+1,end));
我正在努力使用lastIndexOf,IndexOf和Substring位。
以下是YouTube网址示例:
youtube.com/channel/UCUZHFZ9jIKrLroW8LcyJEQQ