Open a csv file do Find and Replace

  • I have a csv file that I want to open, find commas (,) and replace them with nothing (""), save and close.

    This is what I have so far:

    Public Sub Main()

    Dim fn As String

    Dim t As String

    fn = "\\SQL2\Import\AccellerDailyDownload_TEST.csv"

    t = System.IO.File.ReadAllText(fn)

    While Not ((missing this piece))

    t = t.Replace(",", "")

    End While

    End Sub

  • you do not need to put the command in a while statement; .Replace will replace all instances of the comma in one single function call.

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply