You are viewing a plain text version of this content. The canonical link for it is here.
Posted to regexp-dev@jakarta.apache.org by bu...@apache.org on 2001/09/09 00:57:09 UTC

[DO NOT REPLY: Bug 2487] Bracketed quantifiers {n,m} don't accept 0 as a lower bound.

PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT
ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW
AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE
DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL
BE LOST SOMEWHERE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2487

*** shadow/2487	Fri Jul  6 15:57:14 2001
--- shadow/2487.tmp.3273	Sat Sep  8 15:57:09 2001
***************
*** 2,9 ****
  | Bracketed quantifiers {n,m} don't accept 0 as a lower bound.               |
  +----------------------------------------------------------------------------+
  |        Bug #: 2487                        Product: Regexp                  |
! |       Status: NEW                         Version: unspecified             |
! |   Resolution:                            Platform: Other                   |
  |     Severity: Minor                    OS/Version: Other                   |
  |     Priority: Other                     Component: Other                   |
  +----------------------------------------------------------------------------+
--- 2,9 ----
  | Bracketed quantifiers {n,m} don't accept 0 as a lower bound.               |
  +----------------------------------------------------------------------------+
  |        Bug #: 2487                        Product: Regexp                  |
! |       Status: RESOLVED                    Version: unspecified             |
! |   Resolution: DUPLICATE                  Platform: Other                   |
  |     Severity: Minor                    OS/Version: Other                   |
  |     Priority: Other                     Component: Other                   |
  +----------------------------------------------------------------------------+
***************
*** 22,25 ****
  RE expr = new RE("\w\d{0,4}");
  if (expr.match("a")) {
    //should be true!
! }
--- 22,30 ----
  RE expr = new RE("\w\d{0,4}");
  if (expr.match("a")) {
    //should be true!
! }
! 
! ------- Additional Comments From gholam@xtra.co.nz  2001-09-08 15:57 -------
! 
! 
! *** This bug has been marked as a duplicate of 1030 ***