ATMLUtilitiesLibrary.HtmlStripper.StripTagsRegexCompiled C# (CSharp) Méthode

StripTagsRegexCompiled() public static méthode

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