shahin
Active Member
So far, while working with web-scraping I found integers for pagination to increase or go on to the next page. Such as:
Los%20Angeles%2C%20CA&page=1
Los%20Angeles%2C%20CA&page=2
Los%20Angeles%2C%20CA&page=3
And i handled that using for loop like below:
for x = 1 to 3
-----code------
next x
However, today i stumbled across alphabetical pagination and couldn't get any idea to increment it from A to B and so on. Example:
browse-business-directory/char:A
browse-business-directory/char:B
browse-business-directory/char:C
Los%20Angeles%2C%20CA&page=1
Los%20Angeles%2C%20CA&page=2
Los%20Angeles%2C%20CA&page=3
And i handled that using for loop like below:
for x = 1 to 3
-----code------
next x
However, today i stumbled across alphabetical pagination and couldn't get any idea to increment it from A to B and so on. Example:
browse-business-directory/char:A
browse-business-directory/char:B
browse-business-directory/char:C