本文整理汇总了C#中WikiFunctions.Parse.Parsers.FixDateOrdinalsAndOf方法的典型用法代码示例。如果您正苦于以下问题:C# Parsers.FixDateOrdinalsAndOf方法的具体用法?C# Parsers.FixDateOrdinalsAndOf怎么用?C# Parsers.FixDateOrdinalsAndOf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WikiFunctions.Parse.Parsers
的用法示例。
在下文中一共展示了Parsers.FixDateOrdinalsAndOf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: FormatToBDA
/// <summary>
/// takes input string of date and age e.g. "11 May 1990 (age 21)" and converts to {{birth date and age|1990|5|11}}
/// </summary>
/// <param name="dateandage"></param>
/// <returns></returns>
public static string FormatToBDA(string dateandage)
{
Parsers p = new Parsers();
string original = dateandage;
// clean up date format if possible
dateandage = p.FixDateOrdinalsAndOf(" " + dateandage, "test");
// remove date wikilinks
dateandage = WikiRegexes.WikiLinksOnlyPossiblePipe.Replace(dateandage, "$1").Trim();
// string must end with (age xx)
if (!AgeBrackets.IsMatch(dateandage))
return original;
dateandage = AgeBrackets.Replace(dateandage, "");
bool AmericanDate = WikiRegexes.AmericanDates.IsMatch(dateandage);
string ISODate = Tools.ConvertDate(dateandage, DateLocale.ISO);
if (ISODate.Equals(dateandage) && !WikiRegexes.ISODates.IsMatch(dateandage))
return original;
// we have ISO date, convert with {{birth date and age}}, American date, set mf=y
return @"{{birth date and age|" + (AmericanDate ? "mf=y|" : "df=y|") + ISODate.Replace("-", "|") + @"}}";
}