我有一個鏈接列表,它們正在增加一個我想採用該字符串類型的xpath並將其拆分到數字所在的位置,並且每次將該數字更改一次循環。如何在java中循環遍歷一個已解析的字符串
String vPath= "/html/body/section/section[2]/a[1]";
//so the number that's changing is in the last bracket
String[] t = vPath.split("/a");
然後我想使用分割變量並循環遍歷。所以也許使用for循環。不過,我似乎有一個問題,我該怎麼做。我認爲它應該像
For (int i=1; i < t(something here); i++{
then the code of clicking should go here
}
請幫忙。
是你正確的讀一本書將幫助。謝謝! – Madi