Class: String

Inherits:
Object show all
Defined in:
lib/fir/patches/native_patch.rb,
lib/fir/patches/native_patch.rb

Constant Summary collapse

BLANK_RE =
/\A[[:space:]]*\z/

Instance Method Summary collapse

Instance Method Details

#blank?true, false

A string is blank if it’s empty or contains whitespaces only:

''.blank?       # => true
'   '.blank?    # => true
"\t\n\r".blank? # => true
' blah '.blank? # => false

Unicode whitespace is supported:

"\u00a0".blank? # => true

Returns:

  • (true, false)


117
118
119
# File 'lib/fir/patches/native_patch.rb', line 117

def blank?
  BLANK_RE === self
end

#to_utf8Object

Convert String encoding to UTF-8

Returns:

  • string



225
226
227
# File 'lib/fir/patches/native_patch.rb', line 225

def to_utf8
  self.encode(Encoding.find('UTF-8'), invalid: :replace, undef: :replace, replace: '')
end