Ruby | Symbol casecmp function Last Updated : 10 Dec, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report Symbol#casecmp() : casecmp() is a Symbol class method which checks for the case-insensitive version of Symbol Syntax: Symbol.casecmp() Parameter: Symbol values Return: the case-insensitive version of Symbol Example #1 : Ruby # Ruby code for Symbol.casecmp() 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" # casecmp form puts "Symbol a casecmp form : #{a.casecmp(:aBcDeF)}\n\n" puts "Symbol b casecmp form : #{b.casecmp(:"\u{e4 f6 fc}")}\n\n" puts "Symbol c casecmp form : #{c.casecmp(:abcd)}\n\n" Output : Symbol a : aBcDeF Symbol b : äöü Symbol c : ABCDEF Symbol a casecmp form : 0 Symbol b casecmp form : 0 Symbol c casecmp form : 1 Example #2 : Ruby # Ruby code for Symbol.casecmp() 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" # casecmp form puts "Symbol a casecmp form : #{a.casecmp(:gEEks)}\n\n" puts "Symbol b casecmp form : #{b.casecmp(:"\u{e5 f6 f3}")}\n\n" puts "Symbol c casecmp form : #{c.casecmp(:GGGG)}\n\n" Output : Symbol a : geeks Symbol b : åöó Symbol c : GEEKS Symbol a casecmp form : 0 Symbol b casecmp form : 0 Symbol c casecmp form : -1 Comment More infoAdvertise with us Next Article Ruby | Symbol casecmp function M mayank5326 Follow Improve Article Tags : Ruby Ruby-Methods Ruby Symbol-class Similar Reads Ruby | Symbol empty? function Symbol#empty?() : empty?() is a Symbol class method which checks whether the symbol is empty. Syntax: Symbol.empty?() Parameter: Symbol values Return: true - if symbol is empty otherwise return false Example #1 : Ruby # Ruby code for Symbol.empty?() method # declaring Symbol a = :aBcDeF # declaring 2 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 Ruby | Symbol capitalize function Symbol#capitalize() : capitalize() is a Symbol class method which returns the capitalized form of symbol based on the position of next capital form. Syntax: Symbol.capitalize() Parameter: Symbol values Return: the capitalized form of symbol based on the position of next capital form. Example #1 : Ru 2 min read Like