I want to remove commas in the specified column of csv by regular expression.

Asked 1 years ago, Updated 1 years ago, 98 views

I'd like to remove the comma in the CSV specified column of the CSV from the regular expression for the CSV read in CSV mode, but I've never learned the regular expression, so I don't know what to do.
I would like you to provide me with a solution.

regular-expression csv emeditor

2022-09-30 20:11

1 Answers

You do not need to use regular expressions. Select the column you want to remove , , and press Ctrl+H to display the Replace dialog.

[Selected range only] Verify that the options are set and

String to search for: ,
Replacement string: (empty)

As , click the Replace All button to remove , from the selected text.


2022-09-30 20:11

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.