What needs to be escaped in java regular expressions
I have the following line of code
Matcher matcher = Pattern.compile("CREATE TABLE ([^ ]*)
\\(").matcher("CREATE TABLE DeliveryPointAddress (");
And the resulting Matcher does not contain a match (or more importantly)
the table name.
What do I need to change to get a match and "DeliveryPointAddress" in
group 1.
No comments:
Post a Comment