-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
regexp can not match #11
Comments
dkbrics does not handle capturing groups. can you try |
get it. |
Building the automaton can be exponential in time and memory with the number of pattern you have. |
@fulmicoton I have the same issue, not sure what's wrong: But using the same pattern as above - do not work using this library, Any idea?
|
regexp: (.)的(?:联系方式|电话|电话号码|手机号)
string: david的联系方式
result: can not match
code:
List strRegList = new ArrayList(5);
strRegList.add("(.)的(?:联系方式|电话|电话号码|手机号)");
The text was updated successfully, but these errors were encountered: