MCPcopy Create free account
hub / github.com/WindXaa/Android-reverse / matcherChar

Method matcherChar

WebCurl/WebCurl.java:403–407  ·  view source on GitHub ↗
(String strName,String matChar)

Source from the content-addressed store, hash-verified

401
402 //匹配字符串,不区分大小写,参数:源字符串,匹配的字符串
403 public static Boolean matcherChar(String strName,String matChar){
404 Pattern pattern =Pattern.compile(matChar, Pattern.CASE_INSENSITIVE);
405 Matcher matcher=pattern.matcher(strName);
406 return matcher.find();
407 }
408
409
410

Callers 2

getServerInfoMethod · 0.95
strNameMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected