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.
私はRubyに少し慣れていないので、ローカル変数を文字列に置き換えたいと思っています。私が持っている場合:
user = "foo" pass = "bar" puts "if you #{user}, you should #{bar}" #prints: if you foo, you should bar
しかし、私の場合、文字列はファイルからのテキスト行であるため、解析時に宣言されません。このメカニズムに追いつくことができる組み込み関数はありますか?
string = "if you %{user}, you should %{pass}" string % {user: "foo", pass: "bar"} # => "if you foo, you should bar"