不一樣的大小寫轉換

假設有一個string 「BaSiC」,需要將它轉變爲大小寫,那麼該如何轉換?   最簡單的方式:調用api: string str = "BaSiC"; string strUpper = str.ToUpper(); string strLower = str.ToLower();   第二種方法:調用Char.ToUpper(),Char.ToLower()方法,同樣是調用api   第三種
相關文章
相關標籤/搜索