vb Code:
  1. dim lines() as string = io.file.readalllines("csv.txt")
  2. for x as integer = 0 to lines.getupperbound(0)
  3.     if lines(x).contains(".,") then
  4.         lines(x) = lines(x).replace(".", "Value4")
  5.     end if
  6. next
  7.  
  8. io.file.writealllines("csv.txt", lines)