Skip to content

Instantly share code, notes, and snippets.

@zamith
Created July 19, 2015 01:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zamith/d820c852653ff282f324 to your computer and use it in GitHub Desktop.
Save zamith/d820c852653ff282f324 to your computer and use it in GitHub Desktop.
Format strings
str = "this is a template string with a %{placeholder} in it"
puts str % { "placeholder": "piece of text" }
# => this is a template string with a piece of text in it
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment