1、java.time.localdate类表示日期;你可以使用该类的now()方法获取当前日期,或者使用of()方法创建一个指定日期的实例,例如:
localdate today = localdate.now();localdate mybirthday = localdate.of(2000, month.january, 1);
2、java.time.localtime类表示时间;你可以使用该类的now()方法获取当前时间,或者使用of()方法创建一个指定时间的实例,例如:
localtime now = localtime.now();localtime sixthirty = localtime.of(6, 30);
3、java.time.localdatetime类表示日期和时间;你可以使用该类的now()方法获取当前日期和时间,或者使用of()方法创建一个指定日期和时间的实例,例如:
localdatetime now = localdatetime.now();localdatetime datetime = localdatetime.of(2023, month.january, 1, 6, 30);
4、java.time.format.datetimeformatter类用于格式化日期和时间;你可以使用该类的ofpattern()方法创建一个格式化模板,然后使用该模板的format()方法格式化日期和时间,例如:
localdatetime now = localdatetime.now();datetimeformatter formatter = datetimeformatter.ofpattern("yyyy-mm-dd hh:mm:ss");string formatteddatetime = now.format(formatter);
5、创建正则表达式对象可以使用java.util.regex.pattern类创建正则表达式对象,该类提供了compile()方法来编译正则表达式,并返回一个pattern对象。例如:
pattern pattern = pattern.compile("regex");
6、匹配字符串可以使用matcher类来匹配字符串,并执行相应的操作,例如:可以使用matches()方法来检查给定的字符串是否与正则表达式匹配
string input = "example string";pattern pattern = pattern.compile("example.*");matcher matcher = pattern.matcher(input);if (matcher.matches()) { system.out.println("match found");}
7、查找匹配可以使用find()方法在给定的输入中查找正则表达式的匹配项。例如:
string input = "example string";pattern pattern = pattern.compile("example.*");matcher matcher = pattern.matcher(input);if (matcher.find()) { system.out.println("match found at index " + matcher.start());}
8、替换字符串可以使用replaceall()方法来替换匹配正则表达式的字符串。例如:
string input = "example string";pattern pattern = pattern.compile("example");matcher matcher = pattern.matcher(input);string output = matcher.replaceall("replacement");system.out.println(output);
9、匹配模式java中的正则表达式支持许多模式,可以使用这些模式来调整匹配行为。例如,可以使用pattern.case_insensitive模式来进行不区分大小写的匹配:
string input = "example string";pattern pattern = pattern.compile("example.*", pattern.case_insensitive);matcher matcher = pattern.matcher(input);if (matcher.matches()) { system.out.println("match found");}
附:java日期正则表达式// 日期各种格式yyyy-mm-dd hh:mm:ss、 yyyy-mm-dd等string datergx = "(([1-3][0-9]{3})[-]{0,1}(((0[13578]|1[02])[-]{0,1}(0[1-9]|[12][0-9]|3[01]))|((0[469]|11)[-]{0,1}(0[1-9]|[12][0-9]|30))|(02-(0[1-9]|[1][0-9]|2[0-8])))\\s\\d{1,2}:\\d{1,2}:\\d{1,2})|(([1-3][0-9]{3})[-]{0,1}(((0[13578]|1[02])[-]{0,1}(0[1-9]|[12][0-9]|3[01]))|((0[469]|11)-(0[1-9]|[12][0-9]|30))|(02-(0[1-9]|[1][0-9]|2[0-8])))\\s\\d{1,2}:\\d{1,2})|(([1-3][0-9]{3})[-]{0,1}(((0[13578]|1[02])[-]{0,1}(0[1-9]|[12][0-9]|3[01]))|((0[469]|11)[-]{0,1}(0[1-9]|[12][0-9]|30))|(02-(0[1-9]|[1][0-9]|2[0-8]))))";string date1 = "2019-08-28";string date2 = "abc";system.out.println(date1.matches(datergx));//truesystem.out.println(date2.matches(datergx));//false
以上就是java中如何使用日期时间和正则表达式?的详细内容。