Multi-Line Strings
Most languages don't allow multi-line string literals, but Ruby does. There's no need to end your strings and append more strings for the next line, Ruby handles multi-line string literals just fine with the default syntax.
puts "This is a stringthat spans multiple lines.In most languages, this wouldnot work, but not in Ruby."
Alternate Syntax
As with most other literals, Ruby provides an alternate syntax for string literals.
If you're using a lot of quote characters inside your literals, for example, you may want to use this syntax. When you use this syntax is a matter of style, they're usually not needed for strings.
To use the alternate syntax, use the following sequence for single-quoted strings %q{ … }. Similarly, use the following syntax for double-quoted strings %Q{ … }. This alternate syntax follows all the same rules as their "normal" cousins. Also note that you can use any characters you with instead of braces. If you use a brace, square bracket, angle bracket or parenthesis, then the matching character will end the literal. If you don't want to use matching characters, you can use any other symbol (anything not a letter or number). The literal will be closed with another of the same symbol. The following example shows you several ways to use this syntax.
puts %Q{Expected form}puts %Q[Slightly different]puts %Q(Again, slightly different)puts %Q!Something important, maybe?!puts %Q#Hmmm?#
The alternate syntax also works as a multi-line string.
puts %Q{This is amulti-line string.It works just likenormal single ordouble quoted multi-line strings.}
SHARE