Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は のような URL パターンを持ってい"http://www.asdf.com/pages=1"ます。今、この URL パターンを最大 1547 の for ループで操作したいと思います"http://www.asdf.com/pages=1547"。
"http://www.asdf.com/pages=1"
"http://www.asdf.com/pages=1547"
これはあなたが必要とすることをするかもしれません:
for $i in (1 to 10, 1547, 1548) return concat("http://www.asdf.com/pages=", $i)
for $i in (1 to 1547) return concat("http://www.asdf.com/pages=",$i)