I would like to use a regular expression to determine the video ID of NHL.com videos.
Example urls are the following:
1. http://video.nhl.com/videocenter/console?id=789500&catid=35
2. http://video.senators.nhl.com/videocenter/console?id=790130&catid=1141
3. http://video.nhl.com/videocenter/?id=2013020884-605-h
From these examples, the values I would need are as follows:
1. 789500
2. 790130
3. 2013020884-605-h
I would like to use the match() function to obtain the ID following ?id=
, the ID's can include characters that are alphanumeric, underscore, and dash.