jeet_0077 Posted May 6, 2008 Share Posted May 6, 2008 Hi all, I need to read some part of the website with regular expression. Here is the detail. If we visit the following link: http://eventful.com/events/jazz-dancing-love-fun-/E0-001-011459632-4 and in the above link we have something like http://slurl.com/secondlife/Sweethearts/128/165 and is diffrent for different links (the first link above) http://slurl.com/secondlife/ is common for all but Sweethearts/128/165 part will change every time. in the source code it is as: <li> <span class="faded">[Other]</span> <a href="http://slurl.com/secondlife/Sweethearts/128/165" rel="nofollow" class="click-offsite">Sweethearts (128, 165)</a> </li> Can someone please tell to how to grab the link "http://slurl.com/secondlife/Sweethearts/128/165" from the source code of http://eventful.com/events/jazz-dancing-love-fun-/E0-001-011459632-4 Thanks Link to comment https://forums.phpfreaks.com/topic/104373-solved-how-to-read-please-help/ Share on other sites More sharing options...
effigy Posted May 6, 2008 Share Posted May 6, 2008 <pre> <?php $content = file_get_contents('http://eventful.com/events/jazz-dancing-love-fun-/E0-001-011459632-4'); preg_match('/<span class="faded">\[Other\]<\/span>\s+<a[^>]+?href="([^"]+)/', $content, $matches); echo $matches[1]; ?> </pre> Link to comment https://forums.phpfreaks.com/topic/104373-solved-how-to-read-please-help/#findComment-534348 Share on other sites More sharing options...
jeet_0077 Posted May 6, 2008 Author Share Posted May 6, 2008 effigy, Thanks a lot, it worked. Can you please suggest me some good tutorial or website where I can learn Regular expression. I think I am not good at al in regular expression. Link to comment https://forums.phpfreaks.com/topic/104373-solved-how-to-read-please-help/#findComment-534353 Share on other sites More sharing options...
effigy Posted May 6, 2008 Share Posted May 6, 2008 http://www.regular-expressions.info/ Link to comment https://forums.phpfreaks.com/topic/104373-solved-how-to-read-please-help/#findComment-534358 Share on other sites More sharing options...
jeet_0077 Posted May 6, 2008 Author Share Posted May 6, 2008 Thanks Link to comment https://forums.phpfreaks.com/topic/104373-solved-how-to-read-please-help/#findComment-534360 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.