正则表达式格式

前端之家收集整理的这篇文章主要介绍了正则表达式格式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
public static boolean isDoubleOpen(Context context,List<String> list) {
        String path = context.getApplicationContext().getFilesDir().getAbsolutePath();
        if (list == null || list.size() <= 0) {
            list = new ArrayList<>();
            list.add("(/data/user/0/com.hsp.indonesia/files|/data/data/com.hsp.indonesia/files)");
        }
        for (String filePath : list) {
            Pattern pattern = Pattern.compile(filePath);
            if (pattern.matcher(path).matches()) {
                return false;
            }
        }
        return true;
    }
原文链接:https://www.f2er.com/regex/358095.html

猜你在找的正则表达式相关文章