我有一个很长的 SGML 文件,我需要将其转换为另一种语法,但由于某种原因,我的代码不起作用,当我得到输出时,它是完全相同的文档,代码如下:
#!usr/bin/env ruby
def replaceStrings(toChange)
##Remove Title tags and replace with the correct
toChange.gsub(/<title>/) { "=====" }
toChange.gsub(/<\/title>/) { "=====" }
##Image
toChange.gsub(/<graphic fileref="/) { "{{" }
toChange.gsub(/<\/graphic>/) { "|}}" }
toChange.gsub(/;" scale="60">/) { "" }
##Paragraphs
toChange.gsub(/<para>/) { "" }
toChange.gsub(/<\/para>/) { "" }
puts toChange
end
fileInput = ARGV[0]
fileOutput = ARGV[1]
document = File.readlines(fileInput)
puts fileInput
puts fileOutput
document.each { |e| replaceStrings(e)}
File.new(fileOutput, 'w')
File.open(fileOutput, 'w'){
|f| f.write(document)
}
据我所知,我确实调用了 replaceString 方法,但我是否遗漏了什么或做错了什么?
注意:我是 Ruby 的新手