* string.c (rb_str_gsub_bang, rb_str_sub_bang, str_gsub): rdoc fix

based on patch by Run Paint [ruby-core:30938]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28492 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
marcandre 2010-06-30 22:14:38 +00:00
parent 1f7eb6e7ae
commit 2116184190

View File

@ -3550,35 +3550,41 @@ rb_str_sub_bang(int argc, VALUE *argv, VALUE str)
/* /*
* call-seq: * call-seq:
* str.sub(pattern, replacement) -> new_str * str.sub(pattern, replacement) -> new_str
* str.sub(pattern, hash) -> new_str
* str.sub(pattern) {|match| block } -> new_str * str.sub(pattern) {|match| block } -> new_str
* str.sub(pattern) -> an_enumerator
* *
* Returns a copy of <i>str</i> with the <em>first</em> occurrence of * Returns a copy of <i>str</i> with the <em>first</em> occurrence of
* <i>pattern</i> replaced with either <i>replacement</i> or the value of the * <i>pattern</i> substituted for the second argument. The <i>pattern</i> is
* block. The <i>pattern</i> will typically be a <code>Regexp</code>; if it is * typically a <code>Regexp</code>; if given as a <code>String</code>, any
* a <code>String</code> then no regular expression metacharacters will be * regular expression metacharacters it contains will be interpreted
* interpreted (that is <code>/\d/</code> will match a digit, but * literally, e.g. <code>'\\\d'</code> will match a backlash followed by 'd',
* <code>'\d'</code> will match a backslash followed by a 'd'). * instead of a digit.
* *
* If the method call specifies <i>replacement</i>, special variables such as * If <i>replacement</i> is a <code>String</code> it will be substituted for
* <code>$&</code> will not be useful, as substitution into the string occurs * the matched text. It may contain back-references to the pattern's capture
* before the pattern match starts. However, the sequences <code>\1</code>, * groups of the form <code>\\\d</code>, where <i>d</i> is a group number, or
* <code>\2</code>, <code>\k<group_name></code>, etc., may be used. * <code>\\\k<n></code>, where <i>n</i> is a group name. If it is a
* double-quoted string, both back-references must be preceded by an
* additional backslash. However, within <i>replacement</i> the special match
* variables, such as <code>&$</code>, will not refer to the current match.
* *
* In the block form, the current match string is passed in as a parameter, and * If the second argument is a <code>Hash</code>, and the matched text is one
* variables such as <code>$1</code>, <code>$2</code>, <code>$`</code>, * of its keys, the corresponding value is the replacement string.
*
* In the block form, the current match string is passed in as a parameter,
* and variables such as <code>$1</code>, <code>$2</code>, <code>$`</code>,
* <code>$&</code>, and <code>$'</code> will be set appropriately. The value * <code>$&</code>, and <code>$'</code> will be set appropriately. The value
* returned by the block will be substituted for the match on each call. * returned by the block will be substituted for the match on each call.
* *
* If no block and no <i>replacement</i> is given, an enumerator is returned instead.
*
* The result inherits any tainting in the original string or any supplied * The result inherits any tainting in the original string or any supplied
* replacement string. * replacement string.
* *
* "hello".sub(/[aeiou]/, '*') #=> "h*llo" * "hello".sub(/[aeiou]/, '*') #=> "h*llo"
* "hello".sub(/([aeiou])/, '<\1>') #=> "h<e>llo" * "hello".sub(/([aeiou])/, '<\1>') #=> "h<e>llo"
* "hello".sub(/./) {|s| s[0].ord.to_s + ' ' } #=> "104 ello" * "hello".sub(/./) {|s| s.ord.to_s + ' ' } #=> "104 ello"
* "hello".sub(/(?<foo>[aeiou])/, '*\k<foo>*') #=> "h*e*llo" * "hello".sub(/(?<foo>[aeiou])/, '*\k<foo>*') #=> "h*e*llo"
* 'Is SHELL your preferred shell?'.sub(/[[:upper:]]{2,}/, ENV)
* #=> "Is /bin/bash your preferred shell?"
*/ */
static VALUE static VALUE
@ -3705,9 +3711,11 @@ str_gsub(int argc, VALUE *argv, VALUE str, int bang)
* call-seq: * call-seq:
* str.gsub!(pattern, replacement) -> str or nil * str.gsub!(pattern, replacement) -> str or nil
* str.gsub!(pattern) {|match| block } -> str or nil * str.gsub!(pattern) {|match| block } -> str or nil
* str.gsub!(pattern) -> an_enumerator
* *
* Performs the substitutions of <code>String#gsub</code> in place, returning * Performs the substitutions of <code>String#gsub</code> in place, returning
* <i>str</i>, or <code>nil</code> if no substitutions were performed. * <i>str</i>, or <code>nil</code> if no substitutions were performed.
* If no block and no <i>replacement</i> is given, an enumerator is returned instead.
*/ */
static VALUE static VALUE
@ -3721,34 +3729,44 @@ rb_str_gsub_bang(int argc, VALUE *argv, VALUE str)
/* /*
* call-seq: * call-seq:
* str.gsub(pattern, replacement) -> new_str * str.gsub(pattern, replacement) -> new_str
* str.gsub(pattern, hash) -> new_str
* str.gsub(pattern) {|match| block } -> new_str * str.gsub(pattern) {|match| block } -> new_str
* str.gsub(pattern) -> enumerator
* *
* Returns a copy of <i>str</i> with <em>all</em> occurrences of <i>pattern</i> * Returns a copy of <i>str</i> with the <em>all</em> occurrences of
* replaced with either <i>replacement</i> or the value of the block. The * <i>pattern</i> substituted for the second argument. The <i>pattern</i> is
* <i>pattern</i> will typically be a <code>Regexp</code>; if it is a * typically a <code>Regexp</code>; if given as a <code>String</code>, any
* <code>String</code> then no regular expression metacharacters will be * regular expression metacharacters it contains will be interpreted
* interpreted (that is <code>/\d/</code> will match a digit, but * literally, e.g. <code>'\\\d'</code> will match a backlash followed by 'd',
* <code>'\d'</code> will match a backslash followed by a 'd'). * instead of a digit.
* *
* If a string is used as the replacement, special variables from the match * If <i>replacement</i> is a <code>String</code> it will be substituted for
* (such as <code>$&</code> and <code>$1</code>) cannot be substituted into it, * the matched text. It may contain back-references to the pattern's capture
* as substitution into the string occurs before the pattern match * groups of the form <code>\\\d</code>, where <i>d</i> is a group number, or
* starts. However, the sequences <code>\1</code>, <code>\2</code>, * <code>\\\k<n></code>, where <i>n</i> is a group name. If it is a
* <code>\k<group_name></code>, and so on may be used to interpolate * double-quoted string, both back-references must be preceded by an
* successive groups in the match. * additional backslash. However, within <i>replacement</i> the special match
* variables, such as <code>&$</code>, will not refer to the current match.
* *
* In the block form, the current match string is passed in as a parameter, and * If the second argument is a <code>Hash</code>, and the matched text is one
* variables such as <code>$1</code>, <code>$2</code>, <code>$`</code>, * of its keys, the corresponding value is the replacement string.
*
* In the block form, the current match string is passed in as a parameter,
* and variables such as <code>$1</code>, <code>$2</code>, <code>$`</code>,
* <code>$&</code>, and <code>$'</code> will be set appropriately. The value * <code>$&</code>, and <code>$'</code> will be set appropriately. The value
* returned by the block will be substituted for the match on each call. * returned by the block will be substituted for the match on each call.
* *
* The result inherits any tainting in the original string or any supplied * The result inherits any tainting in the original string or any supplied
* replacement string. * replacement string.
* *
* When neither a block nor a second argument is supplied, an
* <code>Enumerator</code> is returned.
*
* "hello".gsub(/[aeiou]/, '*') #=> "h*ll*" * "hello".gsub(/[aeiou]/, '*') #=> "h*ll*"
* "hello".gsub(/([aeiou])/, '<\1>') #=> "h<e>ll<o>" * "hello".gsub(/([aeiou])/, '<\1>') #=> "h<e>ll<o>"
* "hello".gsub(/./) {|s| s[0].ord.to_s + ' '} #=> "104 101 108 108 111 " * "hello".gsub(/./) {|s| s.ord.to_s + ' '} #=> "104 101 108 108 111 "
* "hello".gsub(/(?<foo>[aeiou])/, '{\k<foo>}') #=> "h{e}ll{o}" * "hello".gsub(/(?<foo>[aeiou])/, '{\k<foo>}') #=> "h{e}ll{o}"
* 'hello'.gsub(/[eo]/, 'e' => 3, 'o' => '*') #=> "h3ll*"
*/ */
static VALUE static VALUE