I've been working my way through the excellent Ruby Koans; I've reached the string section of exercises and a few have caused me a little confusion, in particular the "escape clauses and single quoted strings" examples.
One example shows that you can't really use escape characters in this way, but immediately after, the following example is given:
def test_single_quotes_sometimes_interpret_escape_characters
string = '\\\''
assert_equal **2**, string.size
assert_equal **"\\'"**, string
end
(The starred parts of the function are my answers - both of which are correct according to the program.)
This has confused me on two fronts:
- single quotes can sometimes be used with escape characters, and,
- Why is the string size "2", when
assert_equalis"\\\'"? (I personally thought the answer was"\'", which would make more sense with regards to size).
If someone could point me in the right direction with regards to documentation (and possibly explain my second point), I would be very grateful.
Thanks for reading!