From b074bc3d614cd4e783dc77e3602c424110230495 Mon Sep 17 00:00:00 2001 From: Burdette Lamar Date: Mon, 18 Apr 2022 13:02:35 -0500 Subject: [DOC] Enhanced RDoc for MatchData (#5819) Treats: #begin #end #match #match_length --- re.c | 92 +++++++++++++++++++++++++++++++++++--------------------------------- 1 file changed, 47 insertions(+), 45 deletions(-) (limited to 're.c') diff --git a/re.c b/re.c index 0b4dfe6446..4b9f2a3849 100644 --- a/re.c +++ b/re.c @@ -1287,19 +1287,11 @@ match_byteoffset(VALUE match, VALUE n) /* * call-seq: - * mtch.begin(n) -> integer + * begin(n) -> integer + * begin(name) -> integer * - * Returns the offset of the start of the nth element of the match - * array in the string. - * n can be a string or symbol to reference a named capture. - * - * m = /(.)(.)(\d+)(\d)/.match("THX1138.") - * m.begin(0) #=> 1 - * m.begin(2) #=> 2 + * :include: doc/matchdata/begin.rdoc * - * m = /(?.)(.)(?.)/.match("hoge") - * p m.begin(:foo) #=> 0 - * p m.begin(:bar) #=> 2 */ static VALUE @@ -1321,19 +1313,11 @@ match_begin(VALUE match, VALUE n) /* * call-seq: - * mtch.end(n) -> integer + * end(n) -> integer + * end(name) -> integer * - * Returns the offset of the character immediately following the end of the - * nth element of the match array in the string. - * n can be a string or symbol to reference a named capture. - * - * m = /(.)(.)(\d+)(\d)/.match("THX1138.") - * m.end(0) #=> 7 - * m.end(2) #=> 3 + * :include: doc/matchdata/end.rdoc * - * m = /(?.)(.)(?.)/.match("hoge") - * p m.end(:foo) #=> 1 - * p m.end(:bar) #=> 3 */ static VALUE @@ -1354,19 +1338,26 @@ match_end(VALUE match, VALUE n) /* * call-seq: - * mtch.match(n) -> string or nil + * match(n) -> string or nil + * match(name) -> string or nil * - * Returns the captured substring corresponding to the argument. - * n can be a string or symbol to reference a named capture. + * Returns the matched substring corresponding to the given argument. + * + * When non-negative argument +n+ is given, + * returns the matched substring for the nth match: * - * m = /(.)(.)(\d+)(\d)(\w)?/.match("THX1138.") - * m.match(0) #=> "HX1138" - * m.match(4) #=> "8" - * m.match(5) #=> nil + * m = /(.)(.)(\d+)(\d)(\w)?/.match("THX1138.") + * # => # + * m.match(0) # => "HX1138" + * m.match(4) # => "8" + * m.match(5) # => nil * - * m = /(?.)(.)(?.+)/.match("hoge") - * m.match(:foo) #=> "h" - * m.match(:bar) #=> "ge" + * When string or symbol argument +name+ is given, + * returns the matched substring for the given name: + * + * m = /(?.)(.)(?.+)/.match("hoge") + * m.match('foo') # => "h" + * m.match(:bar) # => "ge" * */ @@ -1387,19 +1378,30 @@ match_nth(VALUE match, VALUE n) /* * call-seq: - * mtch.match_length(n) -> array - * - * Returns the length of the captured substring corresponding to the argument. - * n can be a string or symbol to reference a named capture. - * - * m = /(.)(.)(\d+)(\d)(\w)?/.match("THX1138.") - * m.match_length(0) #=> 6 - * m.match_length(4) #=> 1 - * m.match_length(5) #=> nil - * - * m = /(?.)(.)(?.+)/.match("hoge") - * m.match_length(:foo) #=> 1 - * m.match_length(:bar) #=> 2 + * match_length(n) -> integer or nil + * match_length(name) -> integer or nil + * + * Returns the length (in characters) of the matched substring + * corresponding to the given argument. + * + * When non-negative argument +n+ is given, + * returns the length of the matched substring + * for the nth match: + * + * m = /(.)(.)(\d+)(\d)(\w)?/.match("THX1138.") + * # => # + * m.match_length(0) # => 6 + * m.match_length(4) # => 1 + * m.match_length(5) # => nil + * + * When string or symbol argument +name+ is given, + * returns the length of the matched substring + * for the named match: + * + * m = /(?.)(.)(?.+)/.match("hoge") + * # => # + * m.match_length('foo') # => 1 + * m.match_length(:bar) # => 2 * */ -- cgit v1.2.1