What is a regular expression that will pull the user ID out of a URL of the following format? E.g. in the example below, I am looking to get "1227627" as a match after applying the regex.
https://graph.facebook.com/1227627/movies?access_token=[access_token]&limit=5000&offset=5000&__after_id=103108306395658
Note: I will be using this in iOS/objective c.
For some background-- I'm using the graphi API batch request. A batch request can contain up to 20 individual requests, and unfortunately the individual responses do not return the request URL. I could keep track of all individual requests but it would be simpler to parse out the user ID the request corresponded to this way.