ATMLUtilitiesLibrary.HtmlStripper.StripTagsRegexCompiled C# (CSharp) Method

StripTagsRegexCompiled() public static method

Remove HTML from string with compiled Regex.
public static StripTagsRegexCompiled ( string source ) : string
source string
return string
        public static string StripTagsRegexCompiled( string source )
        {
            return _htmlRegex.Replace( source, string.Empty );
        }