3 steps to fix encoding problems in Ruby
You only really think about a string’s encoding when it breaks. When you check your exception tracker and see Encoding::InvalidByteSequenceError: "\xFE" on UTF-8
staring you in the face. When you have a bad encoding, how do you figure out what broke? And how can you fix it?
Post a comment