一、字串操作
建立字串
String s2 = new String("Hello World");
String s1 = "Hello World";
1.連接
。 ,每個字串之間用+相連,+就是字串鏈接,連接之後會產生一個新的字串。 2.取得字串長度 a.lenght() 依索引從0開始,截取字串長度 a.substring(1,3) ; 從1號位元開始截取到3號位元。 3.取得指定字串的索引位置 indexOf()方法;lastIndexOf()方法。 indexOf(s)回傳值:傳回值字串中第一次出現s的索引lastIndexOf(s)回傳值:傳回字串中s最後一次出現s的索引4.移除字串前、後空格trim() 5.替換所有與制定字串相符的字串replace()方法使用equals()對字串進行比較時嚴格區分大小寫,在此條件下,如果兩個字串仍具有相同的字元和長度,則傳回true,不相同則傳回false。
7。判斷字串的開始startsWith()方法判斷字串的結尾endsWith()方法
法用於判斷目前字串物件是否以參數制定的字元開始或結束。
8.大小寫轉換
將字串中的大寫字母轉換為小寫toLowerCase()方法;
將字串中的小寫字母轉換為大寫toUpperCase()方法.
9.字串分割中split( String sign)方法
此方法依據制定的分隔符號對字串進行完全分割。
作業:
public static void main1 (String[] args){ String a = "abcdefghigklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ123456789" ; for(int i=0;i<4;i++){ int b = (int)(Math.random()*100)%a.length(); String c = a.substring(b, b+1); System.out.print(a.substring(b, b+1)); } } //随机生成不重复的四位数的验证码
public static void main(String[] args){ String a = " <student><xm>张三</xm><xb>男</xb></student>"; String b = a.substring(a.indexOf("<xm>")+4,a.indexOf("</xm>") ); System.out.println("姓名:"+b); String c =a.substring(a.indexOf("<xb>")+4,a.indexOf("</xb>") ); System.out.println("性别:"+c); } //截取姓名和性别
二讀日期:操作
d.get(常數);d.get(Calendar.YEAR); //返回數位年
d.get(Calendar.MONTH); //月d.get(Calendar.DAY_OF_MONTH);//日
d.get(Calendar.HOUR) ;//時d.get(Calendar.MINUTE);//分
d.get(Calendar.SECOND);//秒d.get(Calendar.MILLISECOND);//毫秒
日期的顯示格式化:
使用日期格式化顯示器SimpleDateFormat
1.造日期的Calendar
Calendar a = Calendar.getInstance();
2.造格式化器
Simpleance();
2.造格式化器
Simpleance();
2.造格式化器
Simpleance(); ;
yy,yyyy --年
M,MM--月
d,dd --天
h,hh--時,12小時制; HH--時,24小時制
m,mm-分
s ,ss-秒
3.對calendar進行格式化
f.format(日期); //注意,是Date不是Calendar;
f.format(a.getTime()); getTime()函數,轉換成Date物件
(二)寫日期
Calendar a = Calendar.getInstance();
a.set(年,月,日);
a.set(年,月,日,時,分,秒);
a.set(常數,值);
//c.set(1999,8,12);
//c.set(1999, 2,4,18,55,32) ;
//c.set(Calendar.YEAR, 1980);
public class Dog { public static void main(String[] args){ Calendar a = Calendar.getInstance(); a.set(2002, 2, 13); SimpleDateFormat b = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss"); String c = b.format(a.getTime()); System.out.println(c); } //格式化日期显示 //时分秒不写是当前时间
就是本文的全部幫助,同時也希望多多支援PHP中文網!
更多java常見的字串操作和日期操作匯總相關文章請關注PHP中文網!