1、 regionmatches方法
regionmatches方法用於檢測兩個字串在乙個區域內是否相等
public boolean regionmatches(int toffset, string other, it ooffset, int
len)
public boolean regionmatches(boolean ignorecase, int toffset, string other, it ooffset, int
len)
param:
ignorecase : 如果為true, 則比較字元時忽略大小寫
toffset: 此字串中子區域的起始偏移量
other: 字串引數
ooffset: 字串引數中子區域的起始偏移量
len: 要比較的字元數
retun:
如果成功比配,則返回true,否則返回false
例子:string str1 = "m.runoob.com";
string str2 = "runoob";
system.out.println(str1.regionmatches(2, str2, 0,5));
Java 基礎之String類
1.string類初始化方法 public class main string str3 new string chars string str4 new string chars,1,4 system.out.println str1 str1 system.out.println str2 st...
Java基礎之String類
1.字串不變 字串的值在建立後不能被更改。2.因為string物件是不可變的,所以它們可以被共享。即記憶體中只建立了乙個物件,可以被多個使用 3.string字串相當於乙個陣列,string底層是靠字元陣列實現的。1.無參構造 string str new string 2.通過字元陣列構造 str...
java基礎之String類
一串字元組成字串,charsequence是字串的最高的父介面,常用的實現類有兩個 string stringbuffer 不管是string物件還是stringbuffer的物件,都叫做字串物件,簡稱字串。兩種例項化方式 string s1 張三 直接使用賦值形式完成字串物件例項化 string ...