String類的常見方法整理

2021-08-17 22:00:20 字數 1469 閱讀 7406

//判斷:

boolean equals(object obj)//比較內容是否相等

boolean equalsignorecase(string str)//比較內容是否相等,忽略大小寫

boolean contains(string str)//判斷字串是否包含字串str

boolean startswith(string str)//判斷字串是否以字串str開始

boolean endswith(string str)//判斷字串是否以字串str結尾

boolean isempty()//判斷字串是否為空

//獲取:

int length()//獲取字串長度

char charat(int index)//獲取index位置的字元

int indexof(int ch)//返回第一次出現字元ch的索引

int indexof(string str)//返回第一次出現字串str的索引

int indexof(int ch,int fromindex)//返回fromindex後第一次出現字元ch的索引

int indexof(string str,int fromindex)//返回fromindex後第一次出現字串str的索引

string substring(int start)//從start開始擷取字串

string substring(int start,int end)//從start開始到end結束擷取字串

//轉換:

byte getbytes()//把字串轉換為位元組陣列

char tochararray()//把字串轉換為字元陣列

static string valueof(char chs)//把字元陣列轉換為字串

static string valueof(int i)//把int型別的i轉化為字串

string tolowercase()//把字串轉換為小寫

string touppercase()//把字串轉換為大寫

string concat(string str)//把字串與字串str拼接

//替換:

string replace(char old,char new)//將字串內old字元替換為new字元

string replace(string old,string new)//將字串內old字串替換為new字串

//去空格:

string trim()//去除首尾空格

//比較功能:

int compareto(string str)//比較字串大小

int comparetoignorecase(string str) //比較字串大小,忽略大小寫

整理string類常見方法的使用說明

整理string類的length charat getchars replace touppercase tolowercase trim tochararray 使用說明 length 可以用來 計算字串的長度 例如 string s new string asdf system.out.prin...

string函式的常見方法

0.tolower用法 將字串轉換成小寫 string s hello string s1 s.tolower 記住字串的不可變性 console.writeline s1 1.trim的用法 用來去除字串兩邊的空白 2.split函式 用來分隔陣列的函式 常見幾種型別 string split p...

Arrays工具類常見方法

排序 sort 查詢 binarysearch 比較 equals 填充 fill 轉列表 aslist 轉字串 tostring 複製 copyof 排序 sort int a sort int a 方法按照數字順序排列指定的陣列。arrays.sort a system.out.println ...