inspect is a String class method in Ruby which is used to return a printable version of the given string, surrounded by quote marks, with special characters escaped.
Syntax: str.inspect
Parameters:
Returns: Here, str is the given string.
Example 1:
puts "Sample" .inspect
puts "Articles" .inspect
|
Output:
"Sample"
"Articles"
Example 2:
puts "Ru \n y" .inspect
puts "Ar\b\\bcles" .inspect
|
Output:
"Ru \n y"
"Ar\b\\bcles"