summaryrefslogtreecommitdiff
path: root/re.c
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-09 15:20:20 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-09 15:20:20 +0000
commit3e7a554e9d52452110591a2172d34f86fb5a9d9d (patch)
treea1bdd2ec03374ee8a051ec848fda7541c7b3ee81 /re.c
parentf548ea1f4fa787030e2cbd206267a3baaa53114b (diff)
merge revision(s) 51006,53784: [Backport #11495]
* re.c: Update documentation for Regexp class. [fix GH-937][ci skip] Patch by @davydovanton * re.c: Remove deprecated kcode argument from Regexp.new and compile patch provided by Dylan Pulliam [Bug #11495] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@54071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 're.c')
-rw-r--r--re.c30
1 files changed, 13 insertions, 17 deletions
diff --git a/re.c b/re.c
index 6355ad0a7b..7ca89ac00e 100644
--- a/re.c
+++ b/re.c
@@ -1723,10 +1723,6 @@ match_array(VALUE match, int start)
}
-/* [MG]:FIXME: I put parens around the /.../.match() in the first line of the
- second example to prevent the '*' followed by a '/' from ending the
- comment. */
-
/*
* call-seq:
* mtch.to_a -> anArray
@@ -1742,7 +1738,7 @@ match_array(VALUE match, int start)
* accessing the fields directly (as an intermediate array is
* generated).
*
- * all,f1,f2,f3 = *(/(.)(.)(\d+)(\d)/.match("THX1138."))
+ * all,f1,f2,f3 = * /(.)(.)(\d+)(\d)/.match("THX1138.")
* all #=> "HX1138"
* f1 #=> "H"
* f2 #=> "X"
@@ -2959,12 +2955,16 @@ rb_reg_match2(VALUE re)
* If a block is given, invoke the block with MatchData if match succeed, so
* that you can write
*
- * pat.match(str) {|m| ...}
+ * /M(.*)/.match("Matz") do |m|
+ * puts m[0]
+ * puts m[1]
+ * end
*
* instead of
*
- * if m = pat.match(str)
- * ...
+ * if m = /M(.*)/.match("Matz")
+ * puts m[0]
+ * puts m[1]
* end
*
* The return value is a value from block execution in this case.
@@ -2999,16 +2999,15 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re)
/*
* Document-method: compile
*
- * Synonym for <code>Regexp.new</code>
+ * Alias for <code>Regexp.new</code>
*/
-
/*
* call-seq:
- * Regexp.new(string, [options [, kcode]]) -> regexp
- * Regexp.new(regexp) -> regexp
- * Regexp.compile(string, [options [, kcode]]) -> regexp
- * Regexp.compile(regexp) -> regexp
+ * Regexp.new(string, [options]) -> regexp
+ * Regexp.new(regexp) -> regexp
+ * Regexp.compile(string, [options) -> regexp
+ * Regexp.compile(regexp) -> regexp
*
* Constructs a new regular expression from +pattern+, which can be either a
* String or a Regexp (in which case that regexp's options are propagated),
@@ -3019,9 +3018,6 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re)
* <em>or</em>-ed together. Otherwise, if +options+ is not
* +nil+ or +false+, the regexp will be case insensitive.
*
- * When the +kcode+ parameter is `n' or `N' sets the regexp no encoding.
- * It means that the regexp is for binary strings.
- *
* r1 = Regexp.new('^a-z+:\\s+\w+') #=> /^a-z+:\s+\w+/
* r2 = Regexp.new('cat', true) #=> /cat/i
* r3 = Regexp.new(r2) #=> /cat/i