Horde_Text_Filter_Linkurls::getRegex PHP Method

getRegex() public static method

Return the regex used to search for links.
public static getRegex ( ) : string
return string The regex string.
    public static function getRegex()
    {
        if (!self::$regex) {
            self::initializeRegex();
        }
        return self::$regex;
    }