christiniaroelin
Programmer
Hi,
iam trying to make the following transformation on the file:
print first line as it is!
from second line thru end -2 lines change from the SECOND FIELD ONWARD TOUPPER CASE (FIRST FIELD REMAINS IN LOWER CASE).
print the last two lines unmodified.
for eg:
input file:
record
string(") in1 null(" "),
decimal) in2 null(" "),
....
...
string ("\n")
end
expected output file:
record
string(") IN1 NULL(" "),
decimal) IN2 NULL(" "),
....
...
string ("\n")
end
Thank you!
iam trying to make the following transformation on the file:
print first line as it is!
from second line thru end -2 lines change from the SECOND FIELD ONWARD TOUPPER CASE (FIRST FIELD REMAINS IN LOWER CASE).
print the last two lines unmodified.
for eg:
input file:
record
string(") in1 null(" "),
decimal) in2 null(" "),
....
...
string ("\n")
end
expected output file:
record
string(") IN1 NULL(" "),
decimal) IN2 NULL(" "),
....
...
string ("\n")
end
Thank you!