0

我有一个很长的 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 的新手

4

1 回答 1

1

你想使用 gsub!

此外,无需使用块形式:

toChange.gsub!(/<title>/, "=====")

另外,我认为您不需要 File new:

File.open(fileOutput, 'w') do |f|
  f.write(document)
end
于 2012-07-15T13:09:45.547 回答