billli Posted February 23, 2010 Share Posted February 23, 2010 Hi! I'm trying to convert two wiki like tags to their html counter part. ie) [[WikiPage]] => <a href="index.php?p=wiki/view&page=WikiPage" rel="nofollow" title="WikiPage">WikiPage</a> and [[WikiPage|Title]] => <a href="index.php?p=wiki/view&page=WikiPage" rel="nofollow" title="Title">Title</a> $string = htmlentities($string); $simple_search = array( '/\[\[(.*?!\|)\|(.*?)\]\]/is', '/\[\[(.*?)\]\]/is'); $simple_replace = array( '<a href="index.php?p=wiki/view&page=$1" rel="nofollow" title="$2">$2</a>', '<a href="index.php?p=wiki/view&page=$1" rel="nofollow" title="$1">$1</a>' ); Could anyone help me with the two regular expressions? Thanks Link to comment https://forums.phpfreaks.com/topic/193023-regular-expression/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.