I know TCC/TCMD has a regex analysier / tester - but any documentation on constructing one?
Also thank you very much
@samintz
Open the Tcmd/TCC Help file
search for "@regex"
under the @regex help there is a link to "Regular Expression Syntax"
.OR.
search for regular expression syntax
scroll down in the Select topic: window and choose Take Command/TCC Regular Express....
When I do this search the 6th topic is what I am looking for. I added this to my Favorites tab for future reference.
This should assist you in constructing a regular expression.
You could also try: "\w\.jpgMA\d{8}_\d{3}\.\d{3}" assuming the name before the 1st '.' has no special characters. The numbers are inside curly brackets.
There are obviously other ways to construct a Regex that only requires the filename with any combo of digits before and/or after the underscore "_". But based on what I understand from the OP the above should work.