Last Modified
2013-08-21 08:26:46 +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""