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

IsMovedSection() protected static method

protected static IsMovedSection ( WikiPageSection section ) : bool
section WikiPageSection
return bool
        protected static bool IsMovedSection(WikiPageSection section)
        {
            Regex re = new Regex(@"^\s*\{\{(moved|перенесено на|обсуждение перенесено|moved to|перенесено в)\|(.+?)\}\}\s*$", RegexOptions.IgnoreCase);
            Match m = re.Match(section.SectionText);
            return m.Success;
        }