File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Beginning Java and the fly likes Pattern matching doubt Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Pattern matching doubt" Watch "Pattern matching doubt" New topic
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
    
  19

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
 
Similar Threads
greedy quantifier; find() method
pattern matcher
Regex - Matcher class
doubt on group() in Matcher class
can some one explain me the output of this program?