How can I remove leading and trailing whitespace from all columns but one in a CSV?

JDE876

I have a CSV that looks like this:

things,ID,hello_field,more things
stuff,123  ,hello ,more stuff
stuff,123 ,hello ,more stuff
stuff ,123  ,hello ,more stuff
stuff,123  ,hello ,more stuff
stuff ,123,hello ,more stuff
stuff,123,hello ,more stuff
stuff ,123,hello ,more stuff

How can I remove leading and trailing whitespace from all columns except for the second (ID)? The final output would look like this:

things,ID,hello_field,more things
stuff,123  ,hello,more stuff
stuff,123 ,hello,more stuff
stuff,123  ,hello,more stuff
stuff,123  ,hello,more stuff
stuff,123,hello,more stuff
stuff,123,hello,more stuff
stuff,123,hello,more stuff

I tried using the following regex, but it removes spaces from all fields, including those in the ID column.

s/( +,|, +)/,/gi;
Miller

Split, trim selectively, rejoin

perl -F, -lane 's/^\s+|\s+$//g for @F[0,2..$#F]; print join ",", @F' file.csv

Explanation:

Switches:

  • -F/pattern/: split() pattern for -a switch (//'s are optional)
  • -l: Enable line ending processing
  • -a: Splits the line on space and loads them in an array @F
  • -n: Creates a while(<>){...} loop for each line in your input file.
  • -e: Tells perl to execute the code on command line.

Code:

  • EXPR for @F[0,2..$#F]: Iterate over array slice (skipping 2nd field)
  • s/^\s+|\s+$//g: Remove leading and trailing spaces from fields
  • print join ",", @F: Print the results

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can I remove trailing whitespace from a hunk in Magit?

From Dev

Spring validation: How do I remove leading/trailing whitespace from an email before validation?

From Dev

Haskell remove trailing and leading whitespace from a file

From Dev

remove all leading and trailing whitespace from both file and directory names recursively

From Dev

Remove leading and trailing whitespace directories

From Dev

Remove trailing and leading spaces and extra internal whitespace with one gsub call

From Dev

How can I remove all whitespace from string?

From Dev

How can I remove leading and trailing non-alphanumeric characters

From Dev

How can I remove leading and trailing zeroes from numbers with sed/awk/perl?

From Dev

How can I remove leading and trailing zeroes from numbers with sed/awk/perl?

From Dev

Remove shortest leading whitespace from all lines

From Dev

How do I trim leading and trailing whitespace from each line of some output?

From Dev

How do I trim leading and trailing whitespace from input fields in web2py?

From Dev

How to remove leading whitespace from a string in Bash

From Dev

iterate files in folder and remove leading/trailing spaces from columns

From Dev

How do I use an ORACLE REGEX function to remove all leading and trailing line break characters and spaces?

From Dev

How to remove leading and trailing " , remove leading and trailing spaces from each row each field in ksh

From Dev

How to remove leading and trailing spaces from all cells of a excel sheet at once

From Dev

How to show leading/trailing whitespace in a PostgreSQL column?

From Dev

Can't work out how to remove the trailing whitespace from my result

From Dev

Can't work out how to remove the trailing whitespace from my result

From Dev

AngularJS - Remove leading and trailing whitespace from input-box using regex

From Java

How should I remove all the leading spaces from a string? - swift

From Dev

How do I auto-remove trailing whitespace in Android Studio?

From Dev

How to remove leading and trailing white spaces from input text?

From Dev

Ant - How to remove the leading or trailing spaces from the values in the properties file?

From Dev

RegExp: How to remove leading and trailing groups if present from a string

From Dev

How to remove trailing whitespace changes from a sequence of git commits

From Dev

How do I strip all leading and trailing punctuation in Python?

Related Related

  1. 1

    How can I remove trailing whitespace from a hunk in Magit?

  2. 2

    Spring validation: How do I remove leading/trailing whitespace from an email before validation?

  3. 3

    Haskell remove trailing and leading whitespace from a file

  4. 4

    remove all leading and trailing whitespace from both file and directory names recursively

  5. 5

    Remove leading and trailing whitespace directories

  6. 6

    Remove trailing and leading spaces and extra internal whitespace with one gsub call

  7. 7

    How can I remove all whitespace from string?

  8. 8

    How can I remove leading and trailing non-alphanumeric characters

  9. 9

    How can I remove leading and trailing zeroes from numbers with sed/awk/perl?

  10. 10

    How can I remove leading and trailing zeroes from numbers with sed/awk/perl?

  11. 11

    Remove shortest leading whitespace from all lines

  12. 12

    How do I trim leading and trailing whitespace from each line of some output?

  13. 13

    How do I trim leading and trailing whitespace from input fields in web2py?

  14. 14

    How to remove leading whitespace from a string in Bash

  15. 15

    iterate files in folder and remove leading/trailing spaces from columns

  16. 16

    How do I use an ORACLE REGEX function to remove all leading and trailing line break characters and spaces?

  17. 17

    How to remove leading and trailing " , remove leading and trailing spaces from each row each field in ksh

  18. 18

    How to remove leading and trailing spaces from all cells of a excel sheet at once

  19. 19

    How to show leading/trailing whitespace in a PostgreSQL column?

  20. 20

    Can't work out how to remove the trailing whitespace from my result

  21. 21

    Can't work out how to remove the trailing whitespace from my result

  22. 22

    AngularJS - Remove leading and trailing whitespace from input-box using regex

  23. 23

    How should I remove all the leading spaces from a string? - swift

  24. 24

    How do I auto-remove trailing whitespace in Android Studio?

  25. 25

    How to remove leading and trailing white spaces from input text?

  26. 26

    Ant - How to remove the leading or trailing spaces from the values in the properties file?

  27. 27

    RegExp: How to remove leading and trailing groups if present from a string

  28. 28

    How to remove trailing whitespace changes from a sequence of git commits

  29. 29

    How do I strip all leading and trailing punctuation in Python?

HotTag

Archive