Supporting logic to handle the use of the backslash character
This commit is contained in:
@@ -1756,7 +1756,7 @@ namespace Volian.Print.Library
|
||||
ProcDescrList pdl = section.ActiveFormat.PlantFormat.FormatData.PrintData.ProcDescrList;
|
||||
if (pdl != null && pdl.Count > 0)
|
||||
{
|
||||
string procnum = section.MyProcedure.MyContent.Number.Replace(@"\u8209?", "-");
|
||||
string procnum = section.MyProcedure.MyContent.Number.Replace(@"\u8209?", "-").Replace(@"\u9586?", @"\");
|
||||
foreach (ProcDescr pd in pdl)
|
||||
{
|
||||
if (pd.MatchProcNumber != null)
|
||||
@@ -1799,7 +1799,7 @@ namespace Volian.Print.Library
|
||||
ProcDescrList pdl2 = section.ActiveFormat.PlantFormat.FormatData.PrintData.ProcDescrList;
|
||||
if (pdl2 != null && pdl2.Count > 0)
|
||||
{
|
||||
string procnum = section.MyProcedure.MyContent.Number.Replace(@"\u8209?", "-");
|
||||
string procnum = section.MyProcedure.MyContent.Number.Replace(@"\u8209?", "-").Replace(@"\u9586?", @"\");
|
||||
foreach (ProcDescr pd in pdl2)
|
||||
{
|
||||
if (pd.MatchProcNumber != null)
|
||||
|
Reference in New Issue
Block a user