Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bellatrix988/dbf1699c5d33aa2aeb41cbf2fd5c49ac to your computer and use it in GitHub Desktop.
Save bellatrix988/dbf1699c5d33aa2aeb41cbf2fd5c49ac to your computer and use it in GitHub Desktop.
Ruby String Feature
[2] pry(#<QuoteFinancial>)> '%s' % 'test'
=> "test"
pry(#<QuoteFinancial>)> '%{name} %{email}' % {name: 'alex', email: '1@1.eu'}
=> "alex 1@1.eu"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment