I’m doing some file parsing and have a “if %_i% matches regular expression” step. If _i happens to contain a % (because it’s in the file), the whole step silently fails, and control jumps out of the action list, quietly resuming at the step following the call to that action list. It’s a bit alarming…The only message generated is “Error expanding Term 1 left hand value : Missing % after : set the date/time stamp…” - but the step is recorded as having succeeded.(the “set the date/time stamp…” bit is the text immediately following the % in the file).Replacing the %_i% with %!_i%, as mentioned in an earlier thread, works.Steve
Oh, a couple of possibly contributing factors: the regexp used to be in a try/catch, which i deleted, and it’s now followed a couple of steps later by a “Exit action list” step. However, that step isn’t actually being called, and the file contents iterator is only getting about half way through it’s 150 odd expected iterations…
Steve