I can't find any good resource for parsing with regular expression. Could someone please show me the way.
How can I parse this statement?
"Breakpoint 10, main () at file.c:10"
I want get the substring "main ()" or 3rd word of the statement.
|
This works:
Basically the regular expression |
|||
|
|
|
Assuming you want the 3rd word of your string (as said in your comments), first break it using a
That returns |
|||
|
|
I turn to these when I want to play with Regex |
|||
|
|
|
Have you seen the standard Sun tutorial on regular expressions ? In particular the section on matching groups would be of use. |
||||
|
|
|
Well, the regular expression |
|||
|
|
main()or any method name that could possibly contain parameters as well? Anyways, regular-expressions.info has a good regex reference and quite some tutorials (even Java specific ones). – Thomas Nov 18 '11 at 10:58