用java正则表达式检测字符串中是否含有某字符
答案:2 悬赏:30 手机版
解决时间 2021-02-21 02:19
- 提问者网友:献世佛
- 2021-02-20 23:21
用java正则表达式检测字符串中是否含有某字符
最佳答案
- 五星知识达人网友:西岸风
- 2021-02-20 23:36
public class Test {
public static void main(String[] args) {
String str="Hello World"; //待判断的字符串
String reg=".*ll.*"; //判断字符串中是否含有ll
System.out.println(str.matches(reg));
}
public static void main(String[] args) {
String str="Hello World"; //待判断的字符串
String reg=".*ll.*"; //判断字符串中是否含有ll
System.out.println(str.matches(reg));
}
全部回答
- 1楼网友:神鬼未生
- 2021-02-21 01:03
用java正则表达式检测字符串中含有某字符方法:
public class test {
public static void main(string[] args) {
string str="hello world"; //待判断的字符串
string reg=".*ll.*"; //判断字符串中是否含有ll
system.out.println(str.matches(reg));
}
}
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯