Sha256: 7f1b9d1ce1e5eab83e985cd15b8b673e71892f4a5150bbe776c54db32299b66e
Contents?: true
Size: 584 Bytes
Versions: 8
Compression:
Stored size: 584 Bytes
Contents
unless String.method_defined? :remove_suffix class String # Removes a suffix in a string. # # @return [String] a new string without the suffix. # # @example # 'Ladies Night'.remove_suffix(' Night') #=> 'Ladies' def remove_suffix(pattern) dup.remove_suffix!(pattern) end # Removes a suffix in a string. # # @return [String] the string without the suffix. # # @example # 'Ladies Night'.remove_suffix!(' Night') #=> 'Ladies' def remove_suffix!(pattern) gsub!(/#{pattern}\z/, '') self end end end
Version data entries
8 entries across 6 versions & 4 rubygems