Convert back quote to a degree in (16-bit Ter Editor) / MSWord sections

This commit is contained in:
John Jenko 2013-04-19 19:16:43 +00:00
parent 4ca9a34c07
commit da370ae7f2

View File

@ -177,6 +177,7 @@ namespace DataLoader
rtf = rtf.Replace("\x97", @"\u8212?");//
rtf = rtf.Replace("\x9C", @"\u339?");//
rtf = rtf.Replace("\x98", @"\u732?");//
rtf = rtf.Replace("`", @"\'B0");// Degree
Match match = Regex.Match(rtf, @"((\\marg[^\\]+)+)", RegexOptions.Singleline);
rtf = Regex.Replace(rtf, @"(?<!\\[^ \\\r\n]*)\\sectd ", "");
rtf = Regex.Replace(rtf, @"(?<!\\[^ \\\r\n]*)\\sbkpage ", "");