From a872bd3d1485cec5589ff1e3b875c153b6faa377 Mon Sep 17 00:00:00 2001 From: marcandre Date: Tue, 6 Mar 2012 04:11:47 +0000 Subject: merge revision(s) 34927: * string.c (rb_str_aref): Improve rdoc, as per [bug #6106] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34928 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- string.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'string.c') diff --git a/string.c b/string.c index 22f7aaf614..d0f08a3f42 100644 --- a/string.c +++ b/string.c @@ -3196,12 +3196,11 @@ rb_str_aref(VALUE str, VALUE indx) * Element Reference---If passed a single Fixnum, returns a * substring of one character at that position. If passed two Fixnum * objects, returns a substring starting at the offset given by the first, and - * a length given by the second. If given a range, a substring containing - * characters at offsets given by the range is returned. In all three cases, if - * an offset is negative, it is counted from the end of str. Returns - * nil if the initial offset falls outside the string, the length - * is negative, or the beginning of the range is greater than the end of the - * string. + * with a length given by the second. If passed a range, its beginning and end + * are interpreted as offsets delimiting the substring to be returned. In all + * three cases, if an offset is negative, it is counted from the end of str. + * Returns nil if the initial offset falls outside the string or + * the length is negative. * * If a Regexp is supplied, the matching portion of str is * returned. If a numeric or name parameter follows the regular expression, that @@ -3212,12 +3211,13 @@ rb_str_aref(VALUE str, VALUE indx) * * a = "hello there" * a[1] #=> "e" - * a[1,3] #=> "ell" - * a[1..3] #=> "ell" - * a[-3,2] #=> "er" + * a[2, 3] #=> "llo" + * a[2..3] #=> "ll" + * a[-3, 2] #=> "er" + * a[7..-2] #=> "her" * a[-4..-2] #=> "her" - * a[12..-1] #=> nil * a[-2..-4] #=> "" + * a[12..-1] #=> nil * a[/[aeiou](.)\1/] #=> "ell" * a[/[aeiou](.)\1/, 0] #=> "ell" * a[/[aeiou](.)\1/, 1] #=> "l" -- cgit v1.2.3