Created
February 15, 2020 07:40
-
-
Save SyunWatanabe/943d93c4757f972603ac74eaab908245 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
| # 正規表現変換 | |
| old_syntax = <<TEXT | |
| { | |
| :name => 'Alice', | |
| :age=>20, | |
| :gender => :female | |
| } | |
| TEXT | |
| def convert_hash_syntax(old) | |
| old.gsub(/:(\w+) *=> */, '\1: ') | |
| end | |
| puts convert_hash_syntax(old_syntax) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment