我用ruby写的这个小程序。我在SO上找到了一段很好的代码来查找和替换文件中的某些内容,但它似乎不起作用。 这是代码:
#!/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) }
谢谢大家!
答案 0 :(得分:8)
我跳过你做的检查,看看这条线是否已经存在并且通常采用这样的方式(这里我想用'BAR'代替'FOO'):
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
expand_path
的使用在这里也可能有点迂腐,但我喜欢这样,所以我不会意外地破坏一些我不是故意的文件。