Skip to content

Instantly share code, notes, and snippets.

@TwP
Created December 7, 2010 23:03
Show Gist options
  • Save TwP/732604 to your computer and use it in GitHub Desktop.
Save TwP/732604 to your computer and use it in GitHub Desktop.
def fix_escape( str )
str.gsub(%r/\\(\d+|[nr])/) { |match|
case $1
when 'n': "\n"
when 'r': "\r"
else
[$1.to_i(8)].pack('C')
end
}
end
str = %q{\\r\\n\\302\\267}
puts fix_escape(str)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment