Created
July 19, 2015 01:28
-
-
Save zamith/d820c852653ff282f324 to your computer and use it in GitHub Desktop.
Format strings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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