| Author |
string.replaceall() and java.util.regex.Pattern/Matcher
|
joe nesbitt
Greenhorn
Joined: Dec 05, 2009
Posts: 17
|
|
Hi all,
i have a regex that checks if the content between the 5th and 6th occurence of | is "" as follows:
(TEST\\|[||]*\\|\\|[||]*\\|[||]*\\|)\"\"")
It works fine with string.replaceall(). But when same pattern is used with java.util.regex.Pattern and Matcher classes, Matcher.find() is always false. Does it mean that the above regex must not contain the match part, I tried that but in vain.
Could someone, show me as how to use the above regex in combination of Pattern and Match classes.
Thanks in advance.
|
 |
Rob Spoor
Sheriff
Joined: Oct 27, 2005
Posts: 19232
|
|
String.replaceAll uses Pattern/Matcher in the background:
In Matcher:
So if String.replaceAll is working, then you're doing something wrong when using Pattern/Matcher.
|
SCJP 1.4 - SCJP 6 - SCWCD 5
How To Ask Questions How To Answer Questions
|
 |
 |
|
|
subject: string.replaceall() and java.util.regex.Pattern/Matcher
|
|
|