Remove blank rows from CSV file
up vote
1
down vote
favorite
I have a CSV file that contains blank rows like this:
row A
row B
row C
row D
How should I proceed to remove those blank rows to have:
row A
row B
row C
row D
I found many topics on this subject for other languages but none in Ruby.
ruby csv
add a comment |
up vote
1
down vote
favorite
I have a CSV file that contains blank rows like this:
row A
row B
row C
row D
How should I proceed to remove those blank rows to have:
row A
row B
row C
row D
I found many topics on this subject for other languages but none in Ruby.
ruby csv
1
stackoverflow.com/questions/7339292/…
– Gavriel
Jan 18 '16 at 11:56
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I have a CSV file that contains blank rows like this:
row A
row B
row C
row D
How should I proceed to remove those blank rows to have:
row A
row B
row C
row D
I found many topics on this subject for other languages but none in Ruby.
ruby csv
I have a CSV file that contains blank rows like this:
row A
row B
row C
row D
How should I proceed to remove those blank rows to have:
row A
row B
row C
row D
I found many topics on this subject for other languages but none in Ruby.
ruby csv
ruby csv
edited Jan 18 '16 at 11:59
sawa
128k27193297
128k27193297
asked Jan 18 '16 at 11:50
Graham Slick
2,69632552
2,69632552
1
stackoverflow.com/questions/7339292/…
– Gavriel
Jan 18 '16 at 11:56
add a comment |
1
stackoverflow.com/questions/7339292/…
– Gavriel
Jan 18 '16 at 11:56
1
1
stackoverflow.com/questions/7339292/…
– Gavriel
Jan 18 '16 at 11:56
stackoverflow.com/questions/7339292/…
– Gavriel
Jan 18 '16 at 11:56
add a comment |
2 Answers
2
active
oldest
votes
up vote
2
down vote
accepted
Three simple steps:
data = File.read('data.csv') # Read the file
cleaned = data.gsub(/^$n/, '') # Remove blank lines, from [1]
File.open('out.csv', 'w') # Write the cleaned data
[1] Remove empty lines from string
add a comment |
up vote
0
down vote
You don't have to delete the blank lines, just skip them:
require "csv"
CSV.foreach("path/to/file.csv", skip_blanks: true) do |row|
# handle row, it won't be blank
end
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Three simple steps:
data = File.read('data.csv') # Read the file
cleaned = data.gsub(/^$n/, '') # Remove blank lines, from [1]
File.open('out.csv', 'w') # Write the cleaned data
[1] Remove empty lines from string
add a comment |
up vote
2
down vote
accepted
Three simple steps:
data = File.read('data.csv') # Read the file
cleaned = data.gsub(/^$n/, '') # Remove blank lines, from [1]
File.open('out.csv', 'w') # Write the cleaned data
[1] Remove empty lines from string
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Three simple steps:
data = File.read('data.csv') # Read the file
cleaned = data.gsub(/^$n/, '') # Remove blank lines, from [1]
File.open('out.csv', 'w') # Write the cleaned data
[1] Remove empty lines from string
Three simple steps:
data = File.read('data.csv') # Read the file
cleaned = data.gsub(/^$n/, '') # Remove blank lines, from [1]
File.open('out.csv', 'w') # Write the cleaned data
[1] Remove empty lines from string
answered Jan 19 '16 at 16:00
Kristján
13k42845
13k42845
add a comment |
add a comment |
up vote
0
down vote
You don't have to delete the blank lines, just skip them:
require "csv"
CSV.foreach("path/to/file.csv", skip_blanks: true) do |row|
# handle row, it won't be blank
end
add a comment |
up vote
0
down vote
You don't have to delete the blank lines, just skip them:
require "csv"
CSV.foreach("path/to/file.csv", skip_blanks: true) do |row|
# handle row, it won't be blank
end
add a comment |
up vote
0
down vote
up vote
0
down vote
You don't have to delete the blank lines, just skip them:
require "csv"
CSV.foreach("path/to/file.csv", skip_blanks: true) do |row|
# handle row, it won't be blank
end
You don't have to delete the blank lines, just skip them:
require "csv"
CSV.foreach("path/to/file.csv", skip_blanks: true) do |row|
# handle row, it won't be blank
end
answered Nov 11 at 1:03
steenslag
61k1199136
61k1199136
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f34854070%2fremove-blank-rows-from-csv-file%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
stackoverflow.com/questions/7339292/…
– Gavriel
Jan 18 '16 at 11:56