java 判断sttring字符串中是否有括号
答案:2 悬赏:0 手机版
解决时间 2021-03-24 19:25
- 提问者网友:伴风望海
- 2021-03-23 19:20
java 判断sttring字符串中是否有括号
最佳答案
- 五星知识达人网友:怀裏藏嬌
- 2021-03-23 20:36
java判断字符串中包含特定字符串方法:
使用正则表达式进行判断。
源代码:
1
2
3
4
5
6
7
8
9
public class Test {
public static void main(String[] args) {
String str="Hello World"; //待判断的字符串
String reg=".*ll.*"; //判断字符串中是否含有特定字符串ll
System.out.println(str.matches(reg));
}
}
使用正则表达式进行判断。
源代码:
1
2
3
4
5
6
7
8
9
public class Test {
public static void main(String[] args) {
String str="Hello World"; //待判断的字符串
String reg=".*ll.*"; //判断字符串中是否含有特定字符串ll
System.out.println(str.matches(reg));
}
}
全部回答
- 1楼网友:愁杀梦里人
- 2021-03-23 21:31
import java.util.scanner;
public class kh {
public static void main(string[] args) {
scanner sc = new scanner(system.in);
string sttring = sc.next();
boolean flag = false;
for(int i = 0;i < sttring.length();++i){
if(sttring.charat(i) == '('||sttring.charat(i) == ')'){
flag = true;
break;
}
}
if(flag)
system.out.println("字符串中有括号");
else
system.out.println("字符串中没有括号");
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯