ATMLUtilitiesLibrary.HtmlStripper.StripTagsRegexCompiled C# (CSharp) Метод

StripTagsRegexCompiled() публичный статический Метод

Remove HTML from string with compiled Regex.
public static StripTagsRegexCompiled ( string source ) : string
source string
Результат string
        public static string StripTagsRegexCompiled( string source )
        {
            return _htmlRegex.Replace( source, string.Empty );
        }