jaymc Posted June 10, 2008 Share Posted June 10, 2008 I have some regex to create a quote function for a forum. Its works pretty much like this Search for <quote> Check for ending </quote> replace the quote tags with html and get what ever was inbetween the tags as the content So <quote>Hello</quote> Would come out like this <a span="color:#ff0000">Hello</span> That works fine, however, what happens if someone quotes a post which already has a quote in it. You will get this <quote><quote>Hello</quote></quote> Hence it will see the first <quote> tag and find the first </quote>, leaving you with this <a span="color:#ff0000"><quote>Hello</span></quote> I kinda need it to start from the first chars of the string when checking for <quote> Then, check for </quote> starting from the very last char working inwards I hope I explained that well enough, how can I do this !! Link to comment https://forums.phpfreaks.com/topic/109569-solved-regex-outter-search/ Share on other sites More sharing options...
effigy Posted June 10, 2008 Share Posted June 10, 2008 See this post. Link to comment https://forums.phpfreaks.com/topic/109569-solved-regex-outter-search/#findComment-562060 Share on other sites More sharing options...
jaymc Posted June 10, 2008 Author Share Posted June 10, 2008 Cheers Link to comment https://forums.phpfreaks.com/topic/109569-solved-regex-outter-search/#findComment-562101 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.