Specifying two ranges in a sitemap url

Is it possible to create a sitemap url like this? for each places multiple pages are there,which is the best way to scrape data? number of pages for each place also vary.

Url: http://example.com?place=[001-559]#page=[1-36]

Hi, did you manage to figure out if it works? I have the same question

I too am wondering about this, I have a URL that has values like:
http://example.com_testinput=1-1
I want to get 1-1 through 10-10 (1-1, 1-2, 1-3......2-1, 2-2, 2-3, etc.)

http://example.com_testinput=[1-10]-[1-10] only returns the first 10.

Any tricks to use here?

If the second range is not that wide, as in this example, you can just manually create multiple start Urls to handle it:
http://example.com?place=[001-559]#page=1
http://example.com?place=[001-559]#page=2
http://example.com?place=[001-559]#page=3
etc.

A tool like http://www.mynikko.com/tools/tool_incrementstr.html could help.