I have a text file with data like this
-1100,1,0,0,100.00
2050,1,0,0,100.00
-23600,4,0,0,10.00
-174,1,0,0,20.00
0,-1,0,0,0
I’m having a hard time trying to figure out how to replace
a certain number on a specific line.
example:
I want to replace the first number on line three -23600
to -24000.
results:
-1100,1,0,0,100.00
2050,1,0,0,100.00
-24000,4,0,0,10.00
-174,1,0,0,20.00
0,-1,0,0,0
thank you for your help.
Jason
