Skip to content

Instantly share code, notes, and snippets.

@yoppi
Created April 22, 2014 01:58
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 yoppi/11162977 to your computer and use it in GitHub Desktop.
Save yoppi/11162977 to your computer and use it in GitHub Desktop.
Ignore 4byte character
str = "🎵わーい🎵"
ret = ""
str.each_char { |s| ret += s if s.bytesize < 4 }
puts ret
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment