зеркало из https://github.com/github/ruby.git
Regexp#===: Use `\A` and `\z` instead of `^` and `$`
[ci skip] ref https://github.com/rurema/doctree/pull/812 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60784 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
e8ccf9f758
Коммит
210f2cc7e8
6
re.c
6
re.c
|
@ -3156,9 +3156,9 @@ rb_reg_match(VALUE re, VALUE str)
|
|||
*
|
||||
* a = "HELLO"
|
||||
* case a
|
||||
* when /^[a-z]*$/; print "Lower case\n"
|
||||
* when /^[A-Z]*$/; print "Upper case\n"
|
||||
* else; print "Mixed case\n"
|
||||
* when /\A[a-z]*\z/; print "Lower case\n"
|
||||
* when /\A[A-Z]*\z/; print "Upper case\n"
|
||||
* else; print "Mixed case\n"
|
||||
* end
|
||||
* #=> "Upper case"
|
||||
*
|
||||
|
|
Загрузка…
Ссылка в новой задаче