发布网友 发布时间:2024-09-07 06:56
共3个回答
热心网友 时间:2024-09-27 18:48
1、新建java类;
2、编写java代码,匹配开头为'{'结尾为'},'的表达式;
3、编写测试字符串1'{abc}' 及2'{abc' ;
while (m2.find()) {
System.out.println(m2);
}
4、查看输出内容,可以看到字符串1'{abc}' 满足要求,而字符串2'{abc' 不满足要求;
热心网友 时间:2024-09-27 18:47
1、新建java类;
2、编写java代码,匹配开头为'{'结尾为'},'的表达式;
//匹配以{开头,中间任意字符 ,以}结尾的字符串
String regex_1 = "^\\{+.*\\}$";
Pattern p1 = Pattern.compile(regex_1);
3、编写测试字符串1'{abc}' 及2'{abc' ;
//测试1
String str1 = "{abc}";
java.util.regex.Matcher m1 = p1.matcher(str1);
System.out.print("测试1:");
while (m1.find()) {
System.out.println(m1);
}
//测试2
String str2 = "{abc";
java.util.regex.Matcher m2 = p1.matcher(str2);
System.out.print("测试2:");
while (m2.find()) {
System.out.println(m2);
}
4、查看输出内容,可以看到字符串1'{abc}' 满足要求,而字符串2'{abc' 不满足要求;
热心网友 时间:2024-09-27 18:50
^\{.*\}$热心网友 时间:2024-09-27 18:50
1、新建java类;
2、编写java代码,匹配开头为'{'结尾为'},'的表达式;
3、编写测试字符串1'{abc}' 及2'{abc' ;
while (m2.find()) {
System.out.println(m2);
}
4、查看输出内容,可以看到字符串1'{abc}' 满足要求,而字符串2'{abc' 不满足要求;
热心网友 时间:2024-09-27 18:47
^\{.*\}$热心网友 时间:2024-09-27 18:50
1、新建java类;
2、编写java代码,匹配开头为'{'结尾为'},'的表达式;
//匹配以{开头,中间任意字符 ,以}结尾的字符串
String regex_1 = "^\\{+.*\\}$";
Pattern p1 = Pattern.compile(regex_1);
3、编写测试字符串1'{abc}' 及2'{abc' ;
//测试1
String str1 = "{abc}";
java.util.regex.Matcher m1 = p1.matcher(str1);
System.out.print("测试1:");
while (m1.find()) {
System.out.println(m1);
}
//测试2
String str2 = "{abc";
java.util.regex.Matcher m2 = p1.matcher(str2);
System.out.print("测试2:");
while (m2.find()) {
System.out.println(m2);
}
4、查看输出内容,可以看到字符串1'{abc}' 满足要求,而字符串2'{abc' 不满足要求;