//2012/8/7 字串的操作
class stringdemo2
//去兩端空格函式的實現思想
public string mytrim(string s)
while (start <= end && s.charat(end) == ' ')
s = s.substring(start, end + 1);//substring函式包含左邊,不包含右邊
return s;}
//判斷子串在字串中出現的次數.
public int getcount(string str, string substr)
return cnt;
}//獲取兩個字串的最大相同子串
public string getsamemaxsubstr(string str1, string str2)}}
return null;
}//對字串進行排序,生成乙個有序的字串.
public string sortstring(string s)
public void sort(char arr)}}
}public void swap(char arr, int x, int y)
}
java字串操作
1.宣告字串操作 char a string s new string a 1 string s new string a,2,4 2 string str str good 3 string str2 new string good 4 2 連線字串,使用 運算子可以實現多個字串連線的功能,但是要...
Java 操作字串
1.統計字串的長度,中文佔 2 個字元 獲取字串的長度,如果有中文,則每個中文字元計為2位 param value 指定的字串 return 字串的長度 public static int getstrlength string value else return valuelength 2.擷取指...
java字串操作
string類的方法 1.提取字串的長度,使用length char chars string s new string chars int leng length 2.提取字串指定字元使用charat char chars chars hello charat 1 return e 3.提取字串中...