java正则表达式应用的实例代码
时间:2022-09-15 20:56:48
String str = "n1e你v00a?Az$Z000?#99?9900眯2_悄s3你y4@好?!6求救你d75a8t";
Pattern p= Pattern.compile("[\u4e00-\u9fa5]");//把汉字截取出来。
Matcher m= p.matcher(str);
while(m.find()){
System.out.print(m.group());
}
String str = "n1e你v00a?Az$Z000?#99?9900眯2_悄s3你y4@好?!6求救你d75a8t";
String a = "";
String b = "";
String d = "";
String s = "";
for(int i = 0;i<str.length();i++){
char c = str.charAt(i);
if(48<=c && c<=58){
a+=c;
} else if(64<=c && c<=91){
b+=c;
}else if(96<=c && c<=123){
b+=c;
}else{
if(((String.valueOf(c)).getBytes().length)>1){
d+=c;
}else{
s+=c;
}
}
}
System.out.println(a);
System.out.println(b);
System.out.println(d);
System.out.println(s);
标签:java,正则表达式
0
投稿
猜你喜欢
解析scratch3.0二次开发之scratch-blocks免编译修改问题
2022-10-18 22:36:57
Python 'takes exactly 1 argument (2 given)' Python error
2022-04-19 00:26:05
Python3中PyQt5简单实现文件打开及保存
2023-10-17 21:45:52
关于反爬虫的一些简单总结
2022-09-21 18:38:59
Python matplotlib的使用并自定义colormap的方法
2023-02-02 09:41:40
MySQL索引总结(Index Type)
2024-01-23 19:28:27
Mysql查询以某"字符串"开头的查询方式
2024-01-24 21:05:19
python利用numpy存取文件案例教程
2023-05-22 03:55:53
Sql Server "用户登录失败,错误编18456"的解决过程
2024-01-26 20:03:46
pytorch 网络参数 weight bias 初始化详解
2023-08-12 07:43:57
openfiledialog读取txt写入数据库示例
2024-01-16 02:03:35
CREATE FUNCTION sqlserver用户定义函数
2012-08-21 10:57:42
aspJpeg图片水印有杂点的完美解决方法
2011-02-05 10:55:00
在python下读取并展示raw格式的图片实例
2022-07-02 18:47:56
单击按钮将内容复制到剪贴板
2008-08-22 13:08:00
在Recordset对象中查询记录的方法
2008-11-20 16:51:00
在Django的session中使用User对象的方法
2022-04-23 01:20:07
Python人工智能深度学习模型训练经验总结
2022-01-05 18:10:50
python numpy.power()数组元素求n次方案例
2022-06-26 00:11:22
Python 实现引用其他.py文件中的类和类的方法
2023-08-02 10:38:01