我需要在 ruby 中的正则表达式中添加一个字符串,这就是我想要做的(我在我的目录中获取所有文件,打开它们,查找它们是否有模式,然后通过添加到已经存在的内容来修改该模式,为此我需要实际的字符串)
Dir["*"].each do |tFile|
file = File.open(tFile, "rb")
contents = file.read
imageLine=/<img class="myclass"(.*)\/>/
if(contents=~imageLine)
puts contents.sub!(imageLine, "some string"+imageLine+"some other string")
end
end