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. 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. 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() ? Link to comment https://forums.phpfreaks.com/topic/224658-ubb-parsing/#findComment-1165980 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.