[DOC] Enhanced RDoc for Regexp (#5812)

Treats:

    #fixed_encoding?
    #hash
    #==
    #=~
    #match
    #match?

Also, in regexp.rdoc:

    Changes heading from 'Special Global Variables' to 'Regexp Global Variables'.
    Add tiny section 'Regexp Interpolation'.
This commit is contained in:
Burdette Lamar 2022-04-16 15:20:03 -05:00 committed by GitHub
parent bde06ce33a
commit 2b4b513ef0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
Notes: git 2022-04-17 05:20:24 +09:00
Merged-By: BurdetteLamar <BurdetteLamar@Yahoo.com>
2 changed files with 112 additions and 90 deletions

View File

@ -30,6 +30,13 @@ _s_ followed by the letter _t_, so it matches _haystack_, also.
Note that any Regexp matching will raise a RuntimeError if timeout is set and Note that any Regexp matching will raise a RuntimeError if timeout is set and
exceeded. See "Timeout" section in detail. exceeded. See "Timeout" section in detail.
== \Regexp Interpolation
A regexp may contain interpolated strings; trivially:
foo = 'bar'
/#{foo}/ # => /bar/
== <tt>=~</tt> and Regexp#match == <tt>=~</tt> and Regexp#match
Pattern matching may be achieved by using <tt>=~</tt> operator or Regexp#match Pattern matching may be achieved by using <tt>=~</tt> operator or Regexp#match
@ -672,9 +679,10 @@ regexp's encoding can be explicitly fixed by supplying
# raises Encoding::CompatibilityError: incompatible encoding regexp match # raises Encoding::CompatibilityError: incompatible encoding regexp match
# (ISO-8859-1 regexp with UTF-8 string) # (ISO-8859-1 regexp with UTF-8 string)
== Special Global Variables == \Regexp Global Variables
Pattern matching sets some global variables : Pattern matching sets some global variables :
* <tt>$~</tt> is equivalent to Regexp.last_match; * <tt>$~</tt> is equivalent to Regexp.last_match;
* <tt>$&</tt> contains the complete matched text; * <tt>$&</tt> contains the complete matched text;
* <tt>$`</tt> contains string before match; * <tt>$`</tt> contains string before match;

178
re.c
View File

@ -1488,31 +1488,31 @@ rb_backref_set_string(VALUE string, long pos, long len)
/* /*
* call-seq: * call-seq:
* rxp.fixed_encoding? -> true or false * fixed_encoding? -> true or false
* *
* Returns false if rxp is applicable to * Returns +false+ if +self+ is applicable to
* a string with any ASCII compatible encoding. * a string with any ASCII-compatible encoding;
* Returns true otherwise. * otherwise returns +true+:
* *
* r = /a/ * r = /a/ # => /a/
* r.fixed_encoding? # => false * r.fixed_encoding? # => false
* r =~ "\u{6666} a" #=> 2 * r.match?("\u{6666} a") # => true
* r =~ "\xa1\xa2 a".force_encoding("euc-jp") #=> 2 * r.match?("\xa1\xa2 a".force_encoding("euc-jp")) # => true
* r =~ "abc".force_encoding("euc-jp") #=> 0 * r.match?("abc".force_encoding("euc-jp")) # => true
* *
* r = /a/u * r = /a/u # => /a/
* r.fixed_encoding? # => true
* r.match?("\u{6666} a") # => true
* r.match?("\xa1\xa2".force_encoding("euc-jp")) # Raises exception.
* r.match?("abc".force_encoding("euc-jp")) # => true
*
* r = /\u{6666}/ # => /\u{6666}/
* r.fixed_encoding? # => true * r.fixed_encoding? # => true
* r.encoding # => #<Encoding:UTF-8> * r.encoding # => #<Encoding:UTF-8>
* r =~ "\u{6666} a" #=> 2 * r.match?("\u{6666} a") # => true
* r =~ "\xa1\xa2".force_encoding("euc-jp") #=> Encoding::CompatibilityError * r.match?("\xa1\xa2".force_encoding("euc-jp")) # Raises exception.
* r =~ "abc".force_encoding("euc-jp") #=> 0 * r.match?("abc".force_encoding("euc-jp")) # => false
* *
* r = /\u{6666}/
* r.fixed_encoding? #=> true
* r.encoding #=> #<Encoding:UTF-8>
* r =~ "\u{6666} a" #=> 0
* r =~ "\xa1\xa2".force_encoding("euc-jp") #=> Encoding::CompatibilityError
* r =~ "abc".force_encoding("euc-jp") #=> nil
*/ */
static VALUE static VALUE
@ -3117,11 +3117,12 @@ rb_reg_regcomp(VALUE str)
static st_index_t reg_hash(VALUE re); static st_index_t reg_hash(VALUE re);
/* /*
* call-seq: * call-seq:
* rxp.hash -> integer * hash -> integer
* *
* Produce a hash based on the text and options of this regular expression. * Returns the integer hash value for +self+.
*
* Related: Object#hash.
* *
* See also Object#hash.
*/ */
VALUE VALUE
@ -3145,17 +3146,18 @@ reg_hash(VALUE re)
/* /*
* call-seq: * call-seq:
* rxp == other_rxp -> true or false * regexp == object -> true or false
* rxp.eql?(other_rxp) -> true or false
* *
* Equality---Two regexps are equal if their patterns are identical, they have * Returns +true+ if +object+ is another \Regexp whose pattern,
* the same character set code, and their <code>casefold?</code> values are the * flags, and encoding are the same as +self+, +false+ otherwise:
* same. *
* /foo/ == Regexp.new('foo') # => true
* /foo/ == /foo/i # => false
* /foo/ == Regexp.new('food') # => false
* /foo/ == Regexp.new("abc".force_encoding("euc-jp")) # => false
*
* Regexp#eql? is an alias for Regexp#==.
* *
* /abc/ == /abc/x #=> false
* /abc/ == /abc/i #=> false
* /abc/ == /abc/u #=> false
* /abc/u == /abc/n #=> false
*/ */
VALUE VALUE
@ -3264,49 +3266,57 @@ reg_match_pos(VALUE re, VALUE *strp, long pos, VALUE* set_match)
/* /*
* call-seq: * call-seq:
* rxp =~ str -> integer or nil * regexp =~ string -> integer or nil
* *
* Match---Matches <i>rxp</i> against <i>str</i>. * Returns the integer index (in characters) of the first match
* for +self+ and +string+, or +nil+ if none;
* also sets the
* {rdoc-ref:Regexp Global Variables}[rdoc-ref:Regexp@Regexp+Global+Variables]:
* *
* /at/ =~ "input data" #=> 7 * /at/ =~ 'input data' # => 7
* /ax/ =~ "input data" #=> nil * $~ # => #<MatchData "at">
* /ax/ =~ 'input data' # => nil
* $~ # => nil
* *
* If <code>=~</code> is used with a regexp literal with named captures, * Assigns named captures to local variables of the same names
* captured strings (or nil) is assigned to local variables named by * if and only if +self+:
* the capture names.
* *
* /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ =~ " x = y " * - Is a regexp literal;
* see {Regexp Literals}[rdoc-ref:literals.rdoc@Regexp+Literals].
* - Does not contain interpolations;
* see {Regexp Interpolation}[rdoc-ref:Regexp@Regexp+Interpolation].
* - Is at the left of the expression.
*
* Example:
*
* /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ =~ ' x = y '
* p lhs # => "x" * p lhs # => "x"
* p rhs # => "y" * p rhs # => "y"
* *
* If it is not matched, nil is assigned for the variables. * Assigns +nil+ if not matched:
* *
* /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ =~ " x = " * /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ =~ ' x = '
* p lhs # => nil * p lhs # => nil
* p rhs # => nil * p rhs # => nil
* *
* This assignment is implemented in the Ruby parser. * Does not make local variable assignments if +self+ is not a regexp literal:
* The parser detects 'regexp-literal =~ expression' for the assignment.
* The regexp must be a literal without interpolation and placed at left hand side.
* *
* The assignment does not occur if the regexp is not a literal. * r = /(?<foo>\w+)\s*=\s*(?<foo>\w+)/
* r =~ ' x = y '
* p foo # Undefined local variable
* p bar # Undefined local variable
* *
* re = /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ * The assignment does not occur if the regexp is not at the left:
* re =~ " x = y "
* p lhs # undefined local variable
* p rhs # undefined local variable
* *
* A regexp interpolation, <code>#{}</code>, also disables * ' x = y ' =~ /(?<foo>\w+)\s*=\s*(?<foo>\w+)/
* the assignment. * p foo, foo # Undefined local variables
* *
* rhs_pat = /(?<rhs>\w+)/ * A regexp interpolation, <tt>#{}</tt>, also disables
* /(?<lhs>\w+)\s*=\s*#{rhs_pat}/ =~ "x = y" * the assignment:
* p lhs # undefined local variable
* *
* The assignment does not occur if the regexp is placed at the right hand side. * r = /(?<foo>\w+)/
* * /(?<foo>\w+)\s*=\s*#{r}/ =~ 'x = y'
* " x = y " =~ /(?<lhs>\w+)\s*=\s*(?<rhs>\w+)/ * p foo # Undefined local variable
* p lhs, rhs # undefined local variable
* *
*/ */
@ -3388,34 +3398,38 @@ rb_reg_match2(VALUE re)
/* /*
* call-seq: * call-seq:
* rxp.match(str, pos=0) -> matchdata or nil * match(string, offset = 0) -> matchdata or nil
* rxp.match(str, pos=0) {|match| block } -> obj * match(string, offset = 0) {|matchdata| ... } -> object
* *
* Returns a MatchData object describing the match, or * With no block given, returns the MatchData object
* <code>nil</code> if there was no match. This is equivalent to * that describes the match, if any, or +nil+ if none;
* retrieving the value of the special variable <code>$~</code> * the search begins at the given byte +offset+ in +self+:
* following a normal match. If the second parameter is present, it *
* specifies the position in the string to begin the search. * /abra/.match('abracadabra') # => #<MatchData "abra">
* /abra/.match('abracadabra', 4) # => #<MatchData "abra">
* /abra/.match('abracadabra', 8) # => nil
* /abra/.match('abracadabra', 800) # => nil
*
* With a block given, calls the block if and only if a match is found;
* returns the block's value:
*
* /abra/.match('abracadabra') {|matchdata| p matchdata }
* # => #<MatchData "abra">
* /abra/.match('abracadabra', 4) {|matchdata| p matchdata }
* # => #<MatchData "abra">
* /abra/.match('abracadabra', 8) {|matchdata| p matchdata }
* # => nil
* /abra/.match('abracadabra', 8) {|marchdata| fail 'Cannot happen' }
* # => nil
*
* Output (from the first two blocks above):
*
* #<MatchData "abra">
* #<MatchData "abra">
* *
* /(.)(.)(.)/.match("abc")[2] #=> "b" * /(.)(.)(.)/.match("abc")[2] #=> "b"
* /(.)(.)/.match("abc", 1)[2] #=> "c" * /(.)(.)/.match("abc", 1)[2] #=> "c"
* *
* If a block is given, invoke the block with MatchData if match succeed, so
* that you can write
*
* /M(.*)/.match("Matz") do |m|
* puts m[0]
* puts m[1]
* end
*
* instead of
*
* if m = /M(.*)/.match("Matz")
* puts m[0]
* puts m[1]
* end
*
* The return value is a value from block execution in this case.
*/ */
static VALUE static VALUE
@ -3445,8 +3459,8 @@ rb_reg_match_m(int argc, VALUE *argv, VALUE re)
/* /*
* call-seq: * call-seq:
* rxp.match?(str) -> true or false * match?(string) -> true or false
* rxp.match?(str, pos=0) -> true or false * match?(string, offset = 0) -> true or false
* *
* Returns <code>true</code> or <code>false</code> to indicate whether the * Returns <code>true</code> or <code>false</code> to indicate whether the
* regexp is matched or not without updating $~ and other related variables. * regexp is matched or not without updating $~ and other related variables.