| Author |
Pattern matching doubt
|
Sen George
Ranch Hand
Joined: Sep 21, 2005
Posts: 76
|
|
The following code
compiles and runs fine.
Program produces an output of 'match' found in positions 0, 1, 2, 3, 4, 5, 6, 7, and 8. But no data groups. How is this explained-matches found but no data groups?
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16680
|
|
Program produces an output of 'match' found in positions 0, 1, 2, 3, 4, 5, 6, 7, and 8. But no data groups. How is this explained-matches found but no data groups?
Well, look at the pattern....
This reluctantly matches zero or more digits. Since, zero digits is a valid match, an zero length string is a valid match -- which is what you are matching.
Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: Pattern matching doubt
|
|
|