WikiFunctions.Tools.NestedTemplateRegex C# (CSharp) Method

NestedTemplateRegex() public static method

Returns a regex to match the input templates Supports nested templates and comments at end of template call
public static NestedTemplateRegex ( ICollection templatenames ) : Regex
templatenames ICollection The list of template names
return System.Text.RegularExpressions.Regex
        public static Regex NestedTemplateRegex(ICollection<string> templatenames)
        {
            return NestedTemplateRegex(templatenames, false);
        }

Same methods

Tools::NestedTemplateRegex ( ICollection templatenames, bool compiled ) : Regex
Tools::NestedTemplateRegex ( string templatename ) : Regex
Tools::NestedTemplateRegex ( string templatename, bool compiled ) : Regex
Tools