1. string字串,字串可以看成字元陣列,由於它的不可變性,所以使用for迴圈來修改string中元素是失敗的。
·屬性:
·length //獲得字串中的字元的個數.
·方法:
·isnullorempty() //靜態方法,判斷為null或者為""(靜態方法)和if(msg==null||msg=="")一樣的效果。
·tochararray() //將string 轉化為char
·tolower() //小寫,必須接受返回值。(因為字串的不可變)
·toupper() //大寫
·equals() 比較兩個字串是否相同。要想忽略大小寫,像這樣:console.writeline(msg.equals(asg,stringcomparison.ordinalignorecase))
就可以忽略大小寫。
·indexof() 如果 沒有找到對應的資料,返回-1.統計乙個字串中,某個字元出現的次數。
·lastindexof() 如果沒有找到對應的資料,返回-1
·substring() //2個過載,擷取字串。substring(開始索引,擷取的長度)
·split() //分割字串
·join() //靜態方法 使用特定的符號連線字串陣列
·format() //靜態方法 格式化字串
·replace() //替換字串中的某個字元或者字串
字串(String)幾個常用方法的詳解
string 字串 indexof 方法可返回某個指定的字串值在字串中首次出現的位置。stringobject.indexof searchvalue,fromindex searchvalue 必需。規定需檢索的字串值。fromindex 可選的整數引數。規定在字串中開始檢索的位置。它的合法取值是...
字串處理的幾個方法
只是工作中常用到對使用者輸入的字串進行判斷處理等,所有總結了一些方法,作為總結,亦可復用。public sealed class cleanstring if retval null retval string.empty return retval 是否數字字串 public static boo...
字串常用方法
字串常用方法 public class 3 abc 5 int indexof string str 輸出字串2在字串1中的下標 system.out.println hello crl endswith crl 6 6int indexof string str,int fromindex 在字串...