diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-12 14:35:26 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-12 14:35:26 +0000 |
commit | 6c6b31b2a2cfe231b41efcf8f561d7cd94ee193d (patch) | |
tree | 83bbbae5ebb061b78615126a2e5a833358b33c7f | |
parent | 2f3f14b9375b7b188ad0b65044f7ad1d30855901 (diff) | |
download | ruby-6c6b31b2a2cfe231b41efcf8f561d7cd94ee193d.tar.gz ruby-6c6b31b2a2cfe231b41efcf8f561d7cd94ee193d.tar.xz ruby-6c6b31b2a2cfe231b41efcf8f561d7cd94ee193d.zip |
* re.c (match_values_at): make #select to be alias to #values_at
to adapt RDoc description. [ruby-core:12588]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13683 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | re.c | 45 |
2 files changed, 9 insertions, 41 deletions
@@ -14,6 +14,11 @@ Fri Oct 12 12:44:11 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * array.c (rb_ary_product): accessing out of memory bounds. condition fixed. +Fri Oct 12 11:22:15 2007 Yukihiro Matsumoto <matz@ruby-lang.org> + + * re.c (match_values_at): make #select to be alias to #values_at + to adapt RDoc description. [ruby-core:12588] + Thu Oct 11 21:10:17 2007 Yukihiro Matsumoto <matz@ruby-lang.org> * include/ruby/node.h (NOEX_LOCAL): remove unused local visibility. @@ -1339,8 +1339,8 @@ match_entry(VALUE match, long n) /* * call-seq: - if (!OBJ_TAINTED(obj) && rb_safe_level() >= 4) - rb_raise(rb_eSecurityError, "Insecure: can't modify regexp"); + * + * mtch.values_at([index]*) => array * mtch.select([index]*) => array * * Uses each <i>index</i> to access the matching values, returning an array of @@ -1348,7 +1348,7 @@ match_entry(VALUE match, long n) * * m = /(.)(.)(\d+)(\d)/.match("THX1138: The Movie") * m.to_a #=> ["HX1138", "H", "X", "113", "8"] - * m.select(0, 2, -2) #=> ["HX1138", "X", "113"] + * m.values_at(0, 2, -2) #=> ["HX1138", "X", "113"] */ static VALUE @@ -1360,43 +1360,6 @@ match_values_at(int argc, VALUE *argv, VALUE match) /* * call-seq: - * mtch.select([index]*) => array - * - * Uses each <i>index</i> to access the matching values, returning an - * array of the corresponding matches. - * - * m = /(.)(.)(\d+)(\d)/.match("THX1138: The Movie") - * m.to_a #=> ["HX1138", "H", "X", "113", "8"] - * m.select(0, 2, -2) #=> ["HX1138", "X", "113"] - */ - -static VALUE -match_select(int argc, VALUE *argv, VALUE match) -{ - if (argc > 0) { - rb_raise(rb_eArgError, "wrong number of arguments (%d for 0)", argc); - } - else { - struct re_registers *regs = RMATCH(match)->regs; - VALUE target = RMATCH(match)->str; - VALUE result = rb_ary_new(); - int i; - int taint = OBJ_TAINTED(match); - - for (i=0; i<regs->num_regs; i++) { - VALUE str = rb_str_subseq(target, regs->beg[i], regs->end[i]-regs->beg[i]); - if (taint) OBJ_TAINT(str); - if (RTEST(rb_yield(str))) { - rb_ary_push(result, str); - } - } - return result; - } -} - - -/* - * call-seq: * mtch.to_s => str * * Returns the entire matched string. @@ -2453,8 +2416,8 @@ Init_Regexp(void) rb_define_method(rb_cMatch, "to_a", match_to_a, 0); rb_define_method(rb_cMatch, "[]", match_aref, -1); rb_define_method(rb_cMatch, "captures", match_captures, 0); - rb_define_method(rb_cMatch, "select", match_select, -1); rb_define_method(rb_cMatch, "values_at", match_values_at, -1); + rb_define_method(rb_cMatch, "select", match_values_at, -1); rb_define_method(rb_cMatch, "pre_match", rb_reg_match_pre, 0); rb_define_method(rb_cMatch, "post_match", rb_reg_match_post, 0); rb_define_method(rb_cMatch, "to_s", match_to_s, 0); |