Ruby | Symbol to_proc function Last Updated : 10 Dec, 2019 Comments Improve Suggest changes Like Article Like Report Symbol#to_proc() : to_proc() is a Symbol class method which returns the enumerated process for the symbol object. Syntax: Symbol.to_proc() Parameter: Symbol values Return: The enumerated process for the symbol object. Example #1 : Ruby # Ruby code for Symbol.to_proc() method # declaring Symbol a = :aBcDeF # declaring Symbol b = :"\u{e4 f6 fc}" # declaring Symbol c = :ABCDEF # Symbol puts "Symbol a : #{a}\n\n" puts "Symbol b : #{b}\n\n" puts "Symbol c : #{c}\n\n\n\n" # to_proc form puts "Symbol a to_proc form : #{a.to_proc}\n\n" puts "Symbol b to_proc form : #{b.to_proc}\n\n" puts "Symbol c to_proc form : #{c.to_proc}\n\n" Output : Symbol a : aBcDeF Symbol b : äöü Symbol c : ABCDEF Symbol a to_proc form : # Symbol b to_proc form : # Symbol c to_proc form : # Example #2 : Ruby # Ruby code for Symbol.to_proc() method # declaring Symbol a = :geeks # declaring Symbol b = :"\u{e5 f6 f3}" # declaring Symbol c = :GEEKS # Symbol puts "Symbol a : #{a}\n\n" puts "Symbol b : #{b}\n\n" puts "Symbol c : #{c}\n\n\n\n" # to_proc form puts "Symbol a to_proc form : #{a.to_proc}\n\n" puts "Symbol b to_proc form : #{b.to_proc}\n\n" puts "Symbol c to_proc form : #{c.to_proc}\n\n" Output : Symbol a : geeks Symbol b : åöó Symbol c : GEEKS Symbol a to_proc form : # Symbol b to_proc form : # Symbol c to_proc form : # Comment More infoAdvertise with us Next Article Ruby | Symbol to_proc function M mayank5326 Follow Improve Article Tags : Ruby Ruby-Methods Ruby Symbol-class Similar Reads Ruby | Symbol to_s function Symbol#to_s() : to_s() is a Symbol class method which returns string representation of the symbol object. Syntax: Symbol.to_s() Parameter: Symbol values Return: string representation of the symbol object. Example #1 : Ruby # Ruby code for Symbol.to_s() method # declaring Symbol a = :aBcDeF # declari 1 min read Ruby | Symbol to_sym function Symbol#to_sym() : to_sym() is a Symbol class method which returns the symbol representation of the symbol object. Syntax: Symbol.to_sym() Parameter: Symbol values Return: the symbol representation of the symbol object. Example #1 : Ruby # Ruby code for Symbol.to_sym() method # declaring Symbol a = : 1 min read Ruby | Symbol =~ function Symbol#=~() : =~() is a Symbol class method which =~es the pattern with symbol. Syntax: Symbol.=~() Parameter: Symbol values Return: position - if pattern =~es the Symbol otherwise return nil Example #1 : Ruby # Ruby code for Symbol.=~() method # declaring Symbol a = :aBcDeF # declaring Symbol b = : 2 min read Ruby | Symbol == function Symbol#==() : ==() is a Symbol class method which compares two Symbol objects. Syntax: Symbol.==() Parameter: Symbol values Return: true if two Symbols are equal otherwise return false Example #1 : Ruby # Ruby code for Symbol.==() method # declaring Symbol a = :aBcDeF # declaring Symbol b = :"\ 2 min read Ruby | Symbol === function Symbol#===() : ===() is a Symbol class method which compares two Symbol objects. Syntax: Symbol.===() Parameter: Symbol values Return: true - if both the symbols are equal otherwise return false Example #1 : Ruby # Ruby code for Symbol.===() method # declaring Symbol a = :aBcDeF # declaring Symbol b 2 min read Like