Hi,
I'm trying to use javascript regexp to find the following.
I need to get 320459852842 from the above url.
This is the regexp i'm using which doesnot get me the result.
var matched = url.match('^http:\/\/.*(?=\/)?([\d]+)*(?=\?|cmd)*/');
Pls Help.