Skip to content

Instantly share code, notes, and snippets.

@onigra
Last active August 29, 2015 13:57
Show Gist options
  • Save onigra/9804622 to your computer and use it in GitHub Desktop.
Save onigra/9804622 to your computer and use it in GitHub Desktop.
ギャル文字変更スクリプトruby版 https://twitter.com/upgrade_ayp/status/449036965619310592
class String
def to_ayp
ayp_dic = {
'あ' => 'ぁ',
'い' => 'ぃ',
'う' => 'ぅ',
'え' => 'ぇ',
'お' => 'ぉ',
'や' => 'ゃ',
'ゆ' => 'ゅ',
'よ' => 'ょ',
'わ' => 'ゎ',
'つ' => 'っ',
'は' => 'ゎ',
'。' => 'o'
}
ayp_dic.each do |before, after|
self.gsub!(/#{before}/, after)
end
self
end
end
@uru-bns
Copy link

uru-bns commented Mar 27, 2014

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment