Created
May 12, 2012 17:19
-
-
Save ssig33/2667713 to your computer and use it in GitHub Desktop.
http://www6.ocn.ne.jp/~miz2/morse.htm これとかと一緒に使う
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
| #coding:utf-8 | |
| def decode_dip str | |
| str.gsub(/ピカァッ/, '-').gsub(/ピカッ/, '・') | |
| end | |
| def encode_dip str | |
| str.gsub(/-/, 'ピカァッ').gsub(/・/, 'ピカッ') | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment