$find = array( '/\[url=(.+?):(.*?)]/i', '/\[/url:(.*?)]/i');$replace = array( "[url=$1]", '[/url]');$text = preg_replace($find, $replace, $text);