You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
regexp: (.)的(?:联系方式|电话|电话号码|手机号)
string: david的联系方式
result: can not match
code:
List strRegList = new ArrayList(5);
strRegList.add("(.)的(?:联系方式|电话|电话号码|手机号)");
int [] subList = MultiPattern.of(strRegList).matcher().match("david的联系方式");
regexp: (.)的(?:联系方式|电话|电话号码|手机号)
string: david的联系方式
result: can not match
code:
List strRegList = new ArrayList(5);
strRegList.add("(.)的(?:联系方式|电话|电话号码|手机号)");