I have multiple text files with same structure. I want to remove "." in the second line only
ID 330.22 by ID 33022
The number of digits could change (other examples 234567.33 or 34.3)
GENE
ID 330.22
INFO1 44.2
INFO2 22.3"
I have multiple text files with same structure. I want to remove "." in the second line only
ID 330.22 by ID 33022
The number of digits could change (other examples 234567.33 or 34.3)
GENE
ID 330.22
INFO1 44.2
INFO2 22.3"
^ID (.*)\.(.*)$
ID \1\2