Format text file - replace double quotes

Hi team ,

I have a text file
null.txt (48 Bytes)

in which I have to replace – “null” with null
i.e. I have to replace the adjacent double quotes (remove double quotes) only for null

Can you help me with this?

Regards,
Gokul

Hi @gokul1904

Read the data using read text file into a string (str)

Str.Replace("""null""","null")

Write the data back to text file using weite text

Cheers

thanks a lot

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.