今日內容介紹
一、正則表達式的定義及使用
二、Date類的用法
三、Calendar類的用法java
==========================================第一階段========================================正則表達式
* A: 正則表達式匹配練習 * a: 案例代碼 public class RegexDemo { public static void main(String[] args) { checkTel(); } /* * 檢查手機號碼是否合法 * 1開頭 能夠是34578 0-9 位數固定11位 */ public static void checkTel(){ String telNumber = "1335128005"; //String類的方法matches boolean b = telNumber.matches("1[34857][\\d]{9}"); System.out.println(b); } /* * 檢查QQ號碼是否合法 * 0不能開頭,全數字, 位數5,10位 * 123456 * \\d \\D匹配不是數字 */ public static void checkQQ(){ String QQ = "123456"; //檢查QQ號碼和規則是否匹配,String類的方法matches boolean b = QQ.matches("[1-9][\\d]{4,9}"); System.out.println(b); } }
* A: 正則表達式切割練習 * a: 案例代碼 public class RegexDemo1 { public static void main(String[] args) { split_1(); split_2(); split_3(); } /* * String類方法split對字符串進行切割 * 192.168.105.27 按照 點切割字符串 */ public static void split_3(){ String ip = "192.168.105.27"; String[] strArr = ip.split("\\."); System.out.println("數組的長度"+strArr.length); for(int i = 0 ; i < strArr.length ; i++){ System.out.println(strArr[i]); } } /* * String類方法split對字符串進行切割 * 18 22 40 65 按照空格切割字符串 */ public static void split_2(){ String str = "18 22 40 65"; String[] strArr = str.split(" +"); System.out.println("數組的長度"+strArr.length); for(int i = 0 ; i < strArr.length ; i++){ System.out.println(strArr[i]); } } /* * String類方法split對字符串進行切割 * 12-25-36-98 按照-對字符串進行切割 */ public static void split_1(){ String str = "12-25-36-98"; //按照-對字符串進行切割,String類方法split String[] strArr = str.split("-"); System.out.println("數組的長度"+strArr.length); for(int i = 0 ; i < strArr.length ; i++){ System.out.println(strArr[i]); } } }
* A: 正則表達式替換練習 * a: 案例代碼 public class RegexDemo1 { public static void main(String[] args) { replaceAll_1(); } /* * "Hello12345World6789012"將全部數字替換掉 * String類方法replaceAll(正則規則,替換後的新字符串) */ public static void replaceAll_1(){ String str = "Hello12345World6789012"; str = str.replaceAll("[\\d]+", "#"); System.out.println(str); } }
* A: 正則表達式郵箱地址驗證 * a: 案例代碼 public class RegexDemo2 { public static void main(String[] args) { checkMail(); } /* * 檢查郵件地址是否合法 * 規則: * 1234567@qq.com * mym_ail@sina.com * nimail@163.com * wodemail@yahoo.com.cn * * @: 前 數字字母_ 個數不能少於1個 * @: 後 數字字母 個數不能少於1個 * .: 後面 字母 * */ public static void checkMail(){ String email ="abc123@sina.com"; boolean b = email.matches("[a-zA-Z0-9_]+@[0-9a-z]+(\\.[a-z]+)+"); System.out.println(b); } }
* A: Date類的構造方法 * a: 空參構造 * public Date() * b: 帶參構造 * public Date(long times)
==============================第二階段====================================算法
* A: Calendar類_2 * a: 成員方法 * getTime() 把日曆對象,轉成Date日期對象 * get(日曆字段) 獲取指定日曆字段的值 * b: 代碼演示 Calendar c = Calendar.getInstance(); // 獲取年份 int year = c.get(Calendar.YEAR); // 獲取月份 int month = c.get(Calendar.MONTH) + 1; // 獲取天數 int day = c.get(Calendar.DAY_OF_MONTH); System.out.println(year + "年" + month + "月" + day + "日");
* A: Calendar類_3 * a: 成員方法 * set(int field,int value) 設置指定的時間 * b: 代碼演示 /* * Calendar類的set方法 設置日曆 set(int field,int value) field 設置的是哪一個日曆字段 value * 設置後的具體數值 * * set(int year,int month,int day) 傳遞3個整數的年,月,日 */ public static void function_1() { Calendar c = Calendar.getInstance(); // 設置,月份,設置到10月分 // c.set(Calendar.MONTH, 9); // 設置年,月,日 c.set(2099, 4, 1); // 獲取年份 int year = c.get(Calendar.YEAR); // 獲取月份 int month = c.get(Calendar.MONTH) + 1; // 獲取天數 int day = c.get(Calendar.DAY_OF_MONTH); System.out.println(year + "年" + month + "月" + day + "日"); }
* A: Calendar類_4 * a: 成員方法 * add(int field, int value) 進行整數的偏移 * int get(int field) 獲取指定字段的值 * b: 案例演示 /* * Calendar類方法add 日曆的偏移量, * 能夠指定一個日曆中的字段, * 進行整數的偏移 add(int field, int value) */ public static void function_2() { Calendar c = Calendar.getInstance(); // 讓日曆中的天數,向後偏移280天 c.add(Calendar.DAY_OF_MONTH, -280); // 獲取年份 int year = c.get(Calendar.YEAR); // 獲取月份 int month = c.get(Calendar.MONTH) + 1; // 獲取天數 int day = c.get(Calendar.DAY_OF_MONTH); System.out.println(year + "年" + month + "月" + day + "日"); }
* A: 日期練習_活了多少天 * a: 案例代碼 /* * 計算活了多少天 * 生日 今天的日期 * 兩個日期變成毫秒值,減法 */ public static void function() throws Exception { System.out.println("請輸入出生日期 格式 YYYY-MM-dd"); //獲取出生日期,鍵盤輸入 String birthdayString = new Scanner(System.in).next(); //將字符串日期,轉成Date對象 //建立SimpleDateFormat對象,寫日期模式 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); //調用方法parse,字符串轉成日期對象 Date birthdayDate = sdf.parse(birthdayString); //獲取今天的日期對象 Date todayDate = new Date(); //將兩個日期轉成毫秒值,Date類的方法getTime long birthdaySecond = birthdayDate.getTime(); long todaySecond = todayDate.getTime(); long secone = todaySecond-birthdaySecond; if(secone < 0){ System.out.println("還沒出生呢"); } else{ System.out.println(secone/1000/60/60/24); } }
* A: 日期練習_閏年計算 * a: 案例代碼 /* * 閏年計算 * 2000 3000 * 高級的算法: 日曆設置到指定年份的3月1日,add向前偏移1天,獲取天數,29閏年 */ public static void function_1(){ Calendar c = Calendar.getInstance(); //將日曆,設置到指定年的3月1日 c.set(2088, 2, 1); //日曆add方法,向前偏移1天 c.add(Calendar.DAY_OF_MONTH, -1); //get方法獲取天數 int day = c.get(Calendar.DAY_OF_MONTH); System.out.println(day); }