开发者

Find and replace in a file in Ruby

开发者 https://www.devze.com 2023-03-24 10:31 出处:网络
I have this little program I write in ruby. I found a nice piece of code here, on SO, 开发者_如何学编程to find and replace something in a file, but it doesn\'t seems to work.

I have this little program I write in ruby. I found a nice piece of code here, on SO, 开发者_如何学编程to find and replace something in a file, but it doesn't seems to work. Here's the code:

#!/usr/bin/env ruby

DOC = "test.txt"
FIND = /,,^M/
SEP = "\n"

#make substitution
File.read(DOC).gsub(FIND, SEP)

#Check if the line already exist
unique_lines = File.readlines(DOC).uniq

#Save the result in a new file
File.open('test2.txt', 'w') { |f| f.puts(unique_lines) }

Thanks everybody !


I skip the check you make to see if the line already exists and usually go with something like this (here I want to replace 'FOO' with 'BAR'):

full_path_to_read = File.expand_path('~/test1.txt')
full_path_to_write = File.expand_path('~/test2.txt')

File.open(full_path_to_read) do |source_file|
  contents = source_file.read
  contents.gsub!(/FOO/, 'BAR')
  File.open(full_path_to_write, "w+") { |f| f.write(contents) }
end

The use of expand_path is also probably a bit pedantic here, but I like it just so that I don't accidentally clobber some file I didn't mean to.

0

精彩评论

暂无评论...
验证码 换一张
取 消