This commit is contained in:
@@ -121,8 +121,12 @@ namespace DataLoader
|
||||
}
|
||||
public string FixTransitionText(string Text, TransitionInfo tran)
|
||||
{
|
||||
string transText = tran.ResolvePathTo();
|
||||
string lookFor = string.Format(@"<START\]\\v0 ([^#]*?)\\v #Link:Transition[^:]*?:{0} {1}( [0-9]*){2}\[END>", tran.TranType, tran.TransitionID, "{1,2}");
|
||||
Console.WriteLine(">>>>> FixTransitionText");
|
||||
Console.WriteLine("Text = {0}", Text);
|
||||
Console.WriteLine("lookFor = {0}", lookFor);
|
||||
string transText = tran.ResolvePathTo();
|
||||
Console.WriteLine("TransText = {0}", transText);
|
||||
Match m = Regex.Match(Text, lookFor);
|
||||
if (m != null && m.Groups.Count > 1)
|
||||
{
|
||||
|
Reference in New Issue
Block a user