Concatenate Strings – How to?
There are many ways of concatenating Strings in Ruby. Before proceeding let us see how to create a simple string in Ruby.
You can create a String in Ruby as follows,
Let us create one more string.
Now, you can concatenate these two strings by,
This will concatenate String s1
and String s2
and give the result as,
s3 will be =>
"ruby in rails is awesome.And This post is really very informative"
I you are thinking of concatenating string with variables in between, like
Then, String s
can be generated using variable a
as,
The method used in above statement is called as “String Interpolation” in Ruby.
You can use simple insertion («) operator of Ruby for appending String as follows,
Then, result of execution of above statement will be, a1 => ”Hello Guest !”
This is done using insertion operator, you can find more about insertion and push in array here. Refer this if you are new to Ruby.
You can explore more regarding various methods that can be called on Strings in Ruby by,
This will list all the methods. Play around with methods until you get comfortable with it.
Subscribe to Ruby in Rails
Get the latest posts delivered right to your inbox