/**
* 該方法用來將具體的資料轉換成excel中的abcd列
* @param :需要轉換成字母的數字
* @return column:abcd列名稱
* **/
public static string excelcolindextostr(int columnindex)
string columnstr = "";
columnindex--;
do columnstr = ((char) (columnindex % 26 + (int) 'a')) + columnstr;
columnindex = (int) ((columnindex - columnindex % 26) / 26);
} while (columnindex > 0);
return columnstr;
}
/**
* 該方法用來將excel中的abcd列轉換成具體的資料
* @param column:abcd列名稱
* @return integer:將字母列名稱轉換成數字
* **/
public static int excelcolstrtonum(string column)
return result;
}
Java數字轉漢字,數字轉大寫
網上找了一圈,都不合我意,自己花點時間寫了一下。數字不好,邏輯差了點,效能應該還可以。如果需要修改為轉財務大寫或轉換為語音檔案的,可以簡單把漢字改乙個就行。執行結果 0 零 1 一 2 二 3 三 4 四 5 五 6 六 7 七 8 八 9 九 10 十 11 十一 20 二十 91 九十一 110...
數字轉英文
金融業最熟悉也最敏感的就是 數字 中文和英文的數字單位用法不盡相同,中文說 1 億 英文說 one hundred million 100 個百萬 金融人要熟悉這樣的差異,同時也能馬上理解外國人口說的英文數字,即為打好金融英文基礎的第一步。照此練習,短短一小時,就能破除中英文數字轉換的魔咒,讓開會時...
數字轉整數
region 數字轉整數 返回大於或等於指定的十進位制數的最小整數值。public static int ceiling this decimal d 返回大於或等於指定的十進位制數的最小整數值。public static int ceiling this float f 返回大於或等於指定的十進位...