Hello everyone,
I have a file with few fields and i want to replace the first field with new value, here is the example what i want to do,
I have file in dis format-
00222767 083957 00G001 7.83 11.0000 0 2015-08-08 1015400514
00222767 083957 00G001 5.80 11.0000 0 2015-08-08 1015400514
00222767 083957 00G001 3.23 11.0000 0 2015-08-08 1015400514
00222767 083957 00G001 2.48 11.0000 0 2015-08-08 1015400514
00222767 083957 00G001 3.18 11.0000 0 2015-08-08
And i want output as like that:- replace 00222767 with new value 00222779
00222779 083957 00G001 7.83 11.0000 0 2015-08-08 1015400514
00222779 083957 00G001 5.80 11.0000 0 2015-08-08 1015400514
00222779 083957 00G001 3.23 11.0000 0 2015-08-08 1015400514
00222779 083957 00G001 2.48 11.0000 0 2015-08-08 1015400514
Can anyone tell me the step of regular expression for this replacement
Thanks