Last Modified
2013-07-30 21:11:15 +0000
Requires

Description

>> x = "hellont\l"world""

> "hellont\l"world""

>> puts x.inspect.gsub( "\\", "\" ) "hellontl"world""

OR

>> x = 'hellontl"world"'

> "hello\n\t\l"world""

>> puts x.inspect.gsub( "\\", "\" ) "hellontl"world""