Hi,
I have three sets of files to retrieve from a ftp server. There names are G<mmddyyyy>.csv G<mmddyyyy>.csv and I<mmddyyyy.csv> All the files are in the same folder and I use three eWays to fetch each type of file.
I am not being able to construct the regular expression correctly. Here are the ones which I used to fetch a G type file....
Case I
G????????.CSV
Does not work as H and I files are also fetched by mistake
Case II
G\d\d\d\d\d\d\d\d.CSV
does not match
Case III
G+\d\d\d\d\d\d\d\d.CSV
does not match.
It would be helpful if someone can point me to a link which gives the rules of regexp construction in batch eway in egate, or help me construct my reg exp by pointing out the mistake I am making.
I have three sets of files to retrieve from a ftp server. There names are G<mmddyyyy>.csv G<mmddyyyy>.csv and I<mmddyyyy.csv> All the files are in the same folder and I use three eWays to fetch each type of file.
I am not being able to construct the regular expression correctly. Here are the ones which I used to fetch a G type file....
Case I
G????????.CSV
Does not work as H and I files are also fetched by mistake
Case II
G\d\d\d\d\d\d\d\d.CSV
does not match
Case III
G+\d\d\d\d\d\d\d\d.CSV
does not match.
It would be helpful if someone can point me to a link which gives the rules of regexp construction in batch eway in egate, or help me construct my reg exp by pointing out the mistake I am making.