文字列処理クラスTextUtils

2412 ワード

TextUtilsの概要
TextUtilsはandroidが提供する文字列処理クラス(android.text.TextUtils). 
二TextUtilsの重要な方法
1)この文字列からターゲット文字配列への文字のコピー
    public static void getChars(CharSequence s, int start, int end,
                            char[] dest, int destoff)
    s:     
    start:         
    end:         
    dest:       (       )
    destoff:            
 
  
 
  
    2)      s        ch,   start     ,  end  
 
  
    public static int indexOf(CharSequence s, char ch, int start, int end) 
文字chの位置を返す
 
  
    3)            
 
  
    public static boolean regionMatches(CharSequence one, int toffset,
                                    CharSequence two, int ooffset,
                                    int len)
)ソース文字列からサブ文字列を取り出します.
 
  
    public static String substring(CharSequence source, int start, int end) 
 
  
 
  
    5)      a  b     。
    public static boolean equals(CharSequence a, CharSequence b)