Skip to content

Instantly share code, notes, and snippets.

@mtsd
Created July 2, 2010 09:29
Show Gist options
  • Select an option

  • Save mtsd/461146 to your computer and use it in GitHub Desktop.

Select an option

Save mtsd/461146 to your computer and use it in GitHub Desktop.
全角スペース対応 blank? メソッド
class String #:nodoc:
def blank?
self !~ /\S/ || self =~ /\A( |\s)+\Z/
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment