RESULTS:
Execution Time(sec.):
0.000005
Raw Match Pattern:
\"example\"(.+?)}
Match Pattern Explanation:
The regular expression:
(?-imsx:\"example\"(.+?)})
matches as follows:
NODE EXPLANATION
----------------------------------------------------------------------
(?-imsx: group, but do not capture (case-sensitive)
(with ^ and $ matching normally) (with . not
matching \n) (matching whitespace and #
normally):
----------------------------------------------------------------------
\" '"'
----------------------------------------------------------------------
example 'example'
----------------------------------------------------------------------
\" '"'
----------------------------------------------------------------------
( group and capture to \1:
----------------------------------------------------------------------
.+? any character except \n (1 or more times
(matching the least amount possible))
----------------------------------------------------------------------
) end of \1
----------------------------------------------------------------------
} '}'
----------------------------------------------------------------------
) end of grouping
----------------------------------------------------------------------
Java Code Example:
import java.util.regex.Pattern;
import java.util.regex.Matcher;
class Module1{
public static void main(String[] asd){
String sourcestring = "source string to match with pattern";
Pattern re = Pattern.compile("\\\"example\\\"(.+?)}");
Matcher m = re.matcher(sourcestring);
int mIdx = 0;
while (m.find()){
for( int groupIdx = 0; groupIdx < m.groupCount()+1; groupIdx++ ){
System.out.println( "[" + mIdx + "][" + groupIdx + "] = " + m.group(groupIdx));
}
mIdx++;
}
}
}
Matches Found:
NO MATCHES.