Created
June 12, 2017 15:34
-
-
Save BrianMehrman/cb8f1195844835814b147b9973d30d67 to your computer and use it in GitHub Desktop.
Every forget to wrap some text in some parenthesis or brackets. Yeah me too.
This file contains 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/\(Foo::SubFoo::.*\.name\)/"#{\1}"/g | |
[ | |
Foo::SubFoo::One, | |
Foo::SubFoo::Two, | |
Foo::SubFoo::Three, | |
Foo::SubFoo::Four | |
] | |
# => | |
[ | |
"#{Foo::SubFoo::One,}" | |
"#{Foo::SubFoo::Two,}" | |
"#{Foo::SubFoo::Three,}" | |
"#{Foo::SubFoo::Four}" | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment