Use Hex format for the RO DB ID for RO Searches.
This commit is contained in:
parent
49ef77939a
commit
982c0b54de
@ -924,6 +924,9 @@ public struct Step
|
||||
public string StartLineWithDash;
|
||||
public string BlankLineBeforeSubStep;
|
||||
public string AlwaysTab; // AlwaysTabNote, AlwaysTabCaution, AlwaysTabCaution2
|
||||
//for Comanche Peak by jcb
|
||||
public bool NoSpaceMultipleRNOs;
|
||||
//end for Comanche Peak by jcb
|
||||
public string MixCautionsAndNotes;
|
||||
public string NumberHighLevel; // NumberHighLevelRNO
|
||||
public string OffsetTab;
|
||||
@ -4632,11 +4635,13 @@ namespace fmtxml
|
||||
wkstr = Regex.Replace(wkstr, @"\x16([^\x16]*?)(?:\x16|\Z)", @"\ul $1\ulnone ");
|
||||
|
||||
//narrator
|
||||
wkstr = Regex.Replace(wkstr, @"\x86([^\x86 ]*?)(?:[\x86]|(?= )|\Z)(.*?)", @"\f{Narrator}$1\f0$2");
|
||||
//wkstr = Regex.Replace(wkstr, @"\x86([^\x86 ]*?)(?:[\x86]|(?= )|\Z)(.*?)", @"\f{Narrator}$1\f0$2");
|
||||
wkstr = Regex.Replace(wkstr, @"\x86([^\x86 ]*?)(?:[\x86]|(?= )|\Z)(.*?)", @"$1$2");
|
||||
|
||||
// remove hanging indent, vertical tab
|
||||
wkstr = Regex.Replace(wkstr, @"\x02", @"\NonSupported Hanging Indent (Hex x02)");
|
||||
wkstr = Regex.Replace(wkstr, @"\x0B", @"\NonSupported Vertical Tab (Hex x0b");
|
||||
//wkstr = Regex.Replace(wkstr, @"\x0B", @"\NonSupported Vertical Tab (Hex x0b");
|
||||
wkstr = Regex.Replace(wkstr, @"\x0B", @"");
|
||||
|
||||
// remove some unknown chars for ano & fpl - these plants are not supported
|
||||
// as of conversion date.
|
||||
|
Loading…
x
Reference in New Issue
Block a user