F2022-038: AER/RNO ‘NOTE’ centered; F2021-037: Title Case Proc titles in transitions; F2021-036: Note before Caution

This commit is contained in:
Kathy Ruffing 2022-08-09 12:56:04 +00:00
parent 346f5de240
commit c4e889a2b3
3 changed files with 2 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View File

@ -1484,7 +1484,8 @@ namespace VEPROMS.CSLA.Library
private static string CapFirstLetterOnly(string retstr, int p)
{
// LATER: write code to capitalize first letter (active plants)
string lretstr = Regex.Replace(retstr, @"([^ ,]+)", new MatchEvaluator(FixTitleCase));
// F2021-037: Support title case include '/' as separator (added '/' to regex replace)
string lretstr = Regex.Replace(retstr, @"([^ ,/]+)", new MatchEvaluator(FixTitleCase));
return lretstr;
}
// TODO: Section methods are not complete....