Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. str = "this is a template string with a %{placeholder} in it"
  2. puts str % { "placeholder": "piece of text" }
  3. # => this is a template string with a piece of text in it
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement