Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有一个这样的字符串,它存储在一个文件中
#{date}abcde.doc
我希望能够读取此字符串并将 #{date} 替换为
Date.today.strftime("%Y%m%d")
有没有办法解析模板并进行评估?提前致谢!
是的,然而……
如果您使用哈希替换会更容易,如下所示:
s = "%{date}abcde.doc" s % { date: Time.now.strftime(etc) }
或者只使用 ERb。
我认为您正在使用字符串插值,因此需要对其进行评估。