Created
October 8, 2012 14:34
-
-
Save chikoski/3852846 to your computer and use it in GitHub Desktop.
文字列sのASCIIコードを2進数で表示するコード。Ruby1.9以上
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
s.bytes.to_a.map{|i| i.to_s(2)}.join("") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment