Find and Replace using VB; from a txt file, find all commas ","
Closed
lenbrown_8273
Posts
1
Registration date
Tuesday June 11, 2019
Status
Member
Last seen
June 11, 2019
-
Jun 11, 2019 at 06:06 PM
Blocked Profile - Jun 12, 2019 at 07:17 AM
Blocked Profile - Jun 12, 2019 at 07:17 AM
Related:
- Find and Replace using VB; from a txt file, find all commas ","
- Windows 10 iso file download 64-bit - Download - Windows
- Ping to txt file - Guide
- Kmspico zip file download - Download - Other
- Tiny 11 iso file download - Download - Windows
- Download audio file from messenger - Guide
1 response
Ok, well why are removing the commas, from a csv file? That is the format of a csv file, it is comma delimited. You will be destroying the files data integrity by removing the commas.
Anyway, a simple cmd line will do it.
Setlocal enabledelayedexpansion
For /f "delims==" %% a in (sometextfile.csv) do set string=%% a & echo !string:,=! >> yournewfile.csv
Anyway, a simple cmd line will do it.
Setlocal enabledelayedexpansion
For /f "delims==" %% a in (sometextfile.csv) do set string=%% a & echo !string:,=! >> yournewfile.csv