Advertisement
Guest User

Untitled

a guest
Oct 15th, 2015
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. phrase1 = "phrase"
  2. => "phrase"
  3. phrase2 = "phrase".force_encoding("utf-8").force_encoding("US-ASCII")
  4. => "phrase"
  5.  
  6. phrase1.bytes.to_a == phrase2.bytes.to_a
  7. => true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement