Created
May 17, 2015 08:07
-
-
Save 844196/6f5ccf9246b8d0d1b3ee to your computer and use it in GitHub Desktop.
か゛わ゛い゛い゛な゛ぁ゛だ゛い゛ち゛く゛ん゛
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
class String | |
def hirano | |
rtn = '' | |
self.each_char {|c| rtn << "#{c}゛" } | |
rtn | |
end | |
end | |
puts "かわいいなぁだいちくん".hirano | |
# => か゛わ゛い゛い゛な゛ぁ゛だ゛い゛ち゛く゛ん゛ |
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
function hirano() { | |
cat - | sed -e 's/\(.\)/\1゛/g' | |
} | |
echo "かわいいなぁだいちくん" | hirano | |
# => か゛わ゛い゛い゛な゛ぁ゛だ゛い゛ち゛く゛ん゛ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment