User:ShepBot/AWB Module

public string ProcessArticle(string ArticleText, string ArticleTitle, int wikiNamespace, out string Summary, out bool Skip)
{
Skip = false;
Summary = "";
string template = "TEMPLATE NAME HERE";
string project = "";
 
Match s = Regex.Match(ArticleText, @"\{\{" + template + @" \| class=", RegexOptions.IgnoreCase);
Match y = Regex.Match(ArticleText, @"\{\{" + template + @"\|class = ", RegexOptions.IgnoreCase);
Match u = Regex.Match(ArticleText, @"\{\{" + template + @" \| class = ", RegexOptions.IgnoreCase);
Match m = Regex.Match(ArticleText, @"\{\{" + template, RegexOptions.IgnoreCase);
Match z = Regex.Match(ArticleText, @"\{\{" + template + @"(.*?)\|(.*?)class( ?)=( ?)(a-z]*[^|])", RegexOptions.IgnoreCase);
Match p = Regex.Match(ArticleText, @"\{\{" + template + @"(.*?)\|(.*?)class( ?)=( ?)[^a-z]", RegexOptions.IgnoreCase);
Match q = Regex.Match(ArticleText, @"\{\{" + template + "\r\n", RegexOptions.IgnoreCase);
Match n = Regex.Match(ArticleText, @"\|class( ?)\= ( ?)list", RegexOptions.IgnoreCase);
Match c = Regex.Match(ArticleText, @"\|class( ?)\=( ?)stub", RegexOptions.IgnoreCase);
Match t = Regex.Match(ArticleText, @"\|class( ?)\=( ?)start", RegexOptions.IgnoreCase);
Match d = Regex.Match(ArticleText, @"\|class( ?)\=( ?)c", RegexOptions.IgnoreCase);
Match b = Regex.Match(ArticleText, @"\|class( ?)\=( ?)b", RegexOptions.IgnoreCase);
Match a = Regex.Match(ArticleText, @"\|class( ?)\=( ?)a", RegexOptions.IgnoreCase);
Match f = Regex.Match(ArticleText, @"\|class( ?)\=( ?)fa", RegexOptions.IgnoreCase);
Match l = Regex.Match(ArticleText, @"\|class( ?)\=( ?)fl", RegexOptions.IgnoreCase);
Match g = Regex.Match(ArticleText, @"\|class( ?)\=( ?)ga", RegexOptions.IgnoreCase);
 
if (z.Success) return ArticleText;
 
if (n.Success) project = "List";
 
if (c.Success) project = "Stub";
 
if (t.Success) project = "Start";
 
if (d.Success) project = "C";
 
if (b.Success) project = "B";

if (g.Success) project = "GA";

if (a.Success) project = "A";
 
if (l.Success) project = "FL";
 
if (f.Success) project = "FA";
 
if (project.Equals("")) return ArticleText;
 
if (m.Success) ArticleText = ArticleText.Replace("{{" + template, "{{" + template + "|class=" + project);
 
if (s.Success) ArticleText = ArticleText.Replace("{{" + template + "|class=" + project + " | class=", "{{" + template + "|class=" + project);
 
if (y.Success) ArticleText = ArticleText.Replace("{{" + template + "|class=" + project + "|class = ", "{{" + template + "|class=" + project);
 
if (u.Success) ArticleText = ArticleText.Replace("{{" + template + "|class=" + project + " | class = ", "{{" + template + "|class=" + project);
 
if (q.Success) ArticleText = ArticleText.Replace("{{" + template + "|class=" + project + "\r\n" + "|class=", "{{" + template + "\r\n" + "|class=" + project);
 
if (p.Success) ArticleText = ArticleText.Replace("{{" + template + "|class=" + project + "|class=", "{{" + template + "|class=" + project);
 
return ArticleText;
 
}

Stolen from Richard0612, which was tweaked by Reedy, which was slightly modified by me. The code is a custom module for AWB.

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.