tibberous Posted January 17, 2011 Share Posted January 17, 2011 I'm trying to go through a document and replace all the UBB tags with different values. I can preg match the tags, but I don't quit remember how to do the replacement. Tags are like: ect. Anyone have a basic example I can go from? I know I've done it before, just can't think tonight. Quote Link to comment https://forums.phpfreaks.com/topic/224658-ubb-parsing/ Share on other sites More sharing options...
tibberous Posted January 17, 2011 Author Share Posted January 17, 2011 I got it, you do a foreach($matches[0] as $match), then you str_replace, but you send in count as 1, to match sure it one for one replaces. Edit: this doesn't work. Count returns the number of matches =/ I thought it worked like the limit param in the explode function. Quote Link to comment https://forums.phpfreaks.com/topic/224658-ubb-parsing/#findComment-1160485 Share on other sites More sharing options...
xylex Posted January 27, 2011 Share Posted January 27, 2011 Use preg_replace() or preg_replace_callback() instead of preg_match() ? Quote Link to comment https://forums.phpfreaks.com/topic/224658-ubb-parsing/#findComment-1165980 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.