class String
Public Instance Methods
include_any?(other_strs)
click to toggle source
# File lib/helpers/string.rb, line 7 def include_any?(other_strs) other_strs.any? { |other| include? other } end
start_with_lowercase?()
click to toggle source
# File lib/helpers/string.rb, line 2 def start_with_lowercase? first_letter = self[0] first_letter.downcase == first_letter end