1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# >> x = "hello\n\t\\l\"world\""
# => "hello\n\t\\l\"world\""
# >> puts x.inspect.gsub( "\\\\", "\\" )
# "hello\n\t\l\"world\""
#
# OR
#
# >> x = 'hello\n\t\l"world"'
# => "hello\\n\\t\\l\"world\""
# >> puts x.inspect.gsub( "\\\\", "\\" )
# "hello\n\t\l\"world\""
class GraphViz
class Types
class ArrowType < Common
def check(data)
return data
end
def output
return @data.to_s.inspect.gsub( "\\\\", "\\" )
end
alias :to_gv :output
alias :to_s :output
def to_ruby
@data
end
end
end
end
|