HI,
Scenario:
I/p file :Mainframe binary file
O/p File :Ascii file
The format of i/p name is <<FileName>>_<<DATETIMESTAMP>> ( meaning file name changes every day).
and we need a standard output file name say : <<FileNAme>>.txt
Requirement:
I/p Binary file name :<<Filename>>_<<DatetimeStamp>>
o/p ASCII File Name : <<FileName>>
Example 1 : I/P File name : Contract_02042009.bin
o/p File name: Contract.txt
Example 1 : I/P File name : Contract_02052009.bin
o/p File name: Contract.txt
Please let us know the ways to achive this.
Thanks,
Chetan
Changing the name of the of the output
Moderators: DataMystic Support, Moderators, DataMystic Support, Moderators, DataMystic Support, Moderators
- DataMystic Support
- Site Admin
- Posts: 2227
- Joined: Mon Jun 30, 2003 12:32 pm
- Location: Melbourne, Australia
- Contact:
Re: Changing the name of the of the output
You need to search/replace inside the filename using a file name restriction:
Code: Select all
Restrict to file name
|
+--Perl pattern [[^\\].*?$] with [Contract.txt]
[ ] Match case
[ ] Whole words only
[ ] Case sensitive replace
[X] Prompt on replace