Guest User

Untitled

a guest
Jun 18th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. class String
  2. def pad_string_with_nil_to_multiple_of_eight
  3. self + ("\000" * (8 - self.length % 8))
  4. end
  5. end
Add Comment
Please, Sign In to add comment