简体   繁体   中英

How to delete lines containing a string in specific column

I have a big CSV file, and I need to delete all rows that contain a certain string ( "linux" ) in the fourth column. Could you advise me how to do it?

试试下面的代码

csv_lines = CSV.read('path/to/file.csv',headers:true).reject{|row| row[3].to_s.include?('linux') }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM