Claymore.ArchiveWikiBot.Archive.FilterQuotes C# (CSharp) Method

FilterQuotes() protected static method

protected static FilterQuotes ( string text ) : string
text string
return string
        protected static string FilterQuotes(string text)
        {
            Regex re = new Regex(@"(<blockquote>.+?</blockquote>)|(\{{2}(н|Н)ачало цитаты\|?.*?\}{2}.+?\{{2}(к|К)онец цитаты\|?.*?\}{2})", RegexOptions.Singleline);
            return re.Replace(text, "");
        }