Created
June 17, 2013 03:55
-
-
Save plusor/5794573 to your computer and use it in GitHub Desktop.
Ruby 正则使用命名群组. 经常忘记格式怎么写
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
/(?<foo>regexp)/ =~ "regexp" | |
foo # => "regexp" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://doc.infosnel.nl/ruby_regular_expressions.html