Skip to content

Instantly share code, notes, and snippets.

@norman
Created January 22, 2010 20:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save norman/284082 to your computer and use it in GitHub Desktop.
Save norman/284082 to your computer and use it in GitHub Desktop.
# ruby-1.9.1-p378
irb(main):009:0> "é".force_encoding("UTF-8") =~ /[\W]/u
=> 0
irb(main):010:0> "e".force_encoding("UTF-8") =~ /[\W]/u
=> nil
# ruby-1.9.1-p243
irb(main):006:0> "é".force_encoding("UTF-8") =~ /[\W]/u
=> nil
irb(main):007:0> "e".force_encoding("UTF-8") =~ /[\W]/u
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment