Java技巧

正则表达式

        String input = "[1-(2,3)][4-(5,6)]";
        Pattern pattern = Pattern.compile("\\[(\\d+)-\\((\\d+),(\\d+)\\)\\]");
        Matcher matcher = pattern.matcher(input);
        while (matcher.find()) {
            for (int i = 1; i <= matcher.groupCount(); i++) {
                System.out.println(matcher.group(i));
            }
        }

中文时间

new SimpleDateFormat("yyyy年MM月dd日 hh:mm", Locale.CHINA).format(new Date());

你可能感兴趣的:(java,正则表达式)