Back to Library
Region:
Switch to ID
Beginner Exercism • ruby
Strings
Lesson Overview
# Introduction
About
The key thing to remember about Ruby strings is that they are objects that you call methods on. You can find all the methods in the Ruby docs
It’s also worth knowing that strings can be created using single quotes (') or double quotes ("). Single-quoted strings don’t process ASCII escape codes(\n, \t etc.), and they don’t do string interpolation while double-quoted does both.
You can also create strings using the heredoc syntax or using the %q and %Q helpers.
Originally from Exercism ruby concepts