e1seix Posted March 16, 2010 Share Posted March 16, 2010 I'm getting there. I need help with a parser script. One of my columns in my database contains a url link. Within the url link, the very final part is always "m=" and the value is always a number between 1 and 9999 eg. www.mysite.com/index.php?a=34792&b=ndsvdsl&m=54 I need a parser code to extract the "54" value so I can keep it separate in another column. I think this will be a regex parser which is why I'm struggling. - The value of "m" will always be a number within the limits above. - It's not guaranteed to be a zero-filled number (ie. 54, not 0054) - The "m" value will always be the last thing in the url address Can someone guide me? Many thanks. Quote Link to comment Share on other sites More sharing options...
phant0m Posted March 26, 2010 Share Posted March 26, 2010 m\=(\d+)$ Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.