(String strName,String matChar)
| 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 |
no outgoing calls
no test coverage detected