Java Patternmatches判断字符串日期20-一月-23格式
可以使用正则表达式来判断字符串日期的格式。以下是使用Pattern.matches方法判断字符串日期格式的示例代码:
import java.util.regex.Pattern;
public class Main {
public static void main(String[] args) {
String date = "20-一月-23";
String regex = "\\d{2}-一月-\\d{2}";
boolean isMatch = Pattern.matches(regex, date);
System.out.println(isMatch);
}
}
在上述代码中,我们定义了一个正则表达式 \\d{2}-一月-\\d{2},它表示一个两位数字、一个 "一月" 字符串和再一个两位数字的格式。然后使用Pattern.matches方法来判断给定的字符串 date 是否匹配这个正则表达式。
输出结果为 true,说明字符串日期的格式为 "20-一月-23"
原文地址: https://www.cveoy.top/t/topic/iT1O 著作权归作者所有。请勿转载和采集!