Hi,
I have to get the 5th & 6th item splitted by '/' in an URL (like : "https://hello.com/sites/customer/portal/details") which is customer & portal.
I have used the split function and stored it in collection with one Column (Result).
ClearCollect(colSplittedURL,Split(TextInputURL.Text,"/"))
How can I get Nth (5th & 6th) item from collection colSplittedURL?
I know First(colSplittedURL) gives the first item and Last(colSplittedURL) gives the last item of the collection but I don't know how to get soemthing in the middle.
Thanks,
Nabin