crash2burn (Jason Pearlman)
- Login: crash2burn
- Email: jason@metainternet.org
- Registered on: 06/27/2009
- Last sign in: 06/27/2009
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
06/27/2009
-
01:16 AM Ruby Bug #1695: String interpolation Issue with escape characters inside an in-string evaluated statement
- =begin
Thanks! If anything this seems more on the IRB side of things.
=end
-
12:24 AM Ruby Bug #1695 (Closed): String interpolation Issue with escape characters inside an in-string evaluated statement
- =begin
Apologies if this has already been addressed but I could not find anything:
# Alone, works fine
>> 'a'.gsub("'",'\\\'')
=> "a"
# Inside a string in #{} - bombs
>> "hi #{'a'.gsub("'",'\\\'')}"
[just waits for an...