摘要: 转为对应对象列表 //Json数据: [ { "id": 1, "email": "test", "userId": "1233", "employeeName": "xx", "gender": "MALE", "phone": "12341234123", "deptName": "外包" } 阅读全文
posted @ 2022-02-10 16:21 zjcfrancis 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Pattern实现 //完全匹配 Pattern pattern = Pattern.compile("^" + "张" + "$"); //右匹配 Pattern pattern = Pattern.compile("^.*" + "张" + "$"); //左匹配 Pattern pattern 阅读全文
posted @ 2022-02-10 15:32 zjcfrancis 阅读(2582) 评论(0) 推荐(0) 编辑