The operation #{ } appears to be so fundamental that my Ruby book completely skips its definition. Can someone provide an explanation?
|
|
Why This Is a Good QuestionThis is a tough question to Google for unless you know the right search terms. The The AnswerThe Related Links |
|||||||||||
|
|
It allows you to put Ruby code within a string. So:
Would output:
It's commonly used to insert variable values into strings without having to mess around with string concatenation:
|
|||
|
|
|
It's the string interpolation operator, you use it to insert an expression into a string. Your string needs to be embedded in " to let this magic work, no 's. It is much faster and better than string concatenation.
|
|||
|
|
