I am formatting raw data and I need to add a date (yesterday) to each line. Is this possible?
Thanks
Hopper
Thanks
Hopper
Code: Select all
uni_010105.txt
uni_010205.txt
uni_010305.txt
uni_010405.txt
uni_010505.txt
etc.
Code: Select all
.88,$0.00,,,,WEST,REG,17131,010517,
9.13,$0.00,,,2003,WEST,REG,00000,210056,
3.15,$0.00,1,,2006,WEST,OT,17131,010517,
8.00,$0.00,1,,2006,WEST,REG,17131,010517,
1.25,$0.00,1,,2006,,OT,17131,010517,
Code: Select all
.88,$0.00,,,,WEST,REG,17131,010517,01/01/05,
9.13,$0.00,,,2003,WEST,REG,00000,210056,01/01/05,
3.15,$0.00,1,,2006,WEST,OT,17131,010517,01/02/05,
8.00,$0.00,1,,2006,WEST,REG,17131,010517,01/03/05,
1.25,$0.00,1,,2006,,OT,17131,010517,01/03/05,
Code: Select all
InsertMode
ColumnModeOff
HexOff
UnixReOff
Top
Template 0
Top
Find RegExp "uni_^([0-3][0-9]^)^([0-1][0-9]^)^([0-9][0-9]^)"
Replace "^1/^2/^3"
StartSelect
SelectToTop
Cut
EndSelect