using
system;
class
program
static
void
main(
string
args)}
//假設有列舉值如下:
public
enum
dbprovidertype
//1、將列舉轉換為字串:
string
strdbtype
=dbprovidertype.sqlserver.tostring();
//2、將字串轉換為列舉:
dbprovidertype dbtype
=(dbprovidertype)enum.parse(
typeof
(dbprovidertype), strdbtype,
true);
日期 字串 相互轉換
獲取系統日期 sysdate 格式化日期 to char sysdate yy mm dd hh24 mi ss 或 to date sysdate yy mm dd hh24 mi ss 格式化數字 to number 注 to char 把日期或數字轉換為字串 to char number,格式...
陣列 字串相互轉換
tostring 陣列轉物件 json.stringify 陣列 陣列轉字串 json.parse 和 json.stringify 1.parse 用於從乙個字串中解析出json 物件。例如 var str 經 json.parse str 得到 object age 23 name cpf pr...
時間 字串的相互轉換
pragma mark 獲取字串形式的時間戳 nsstring gettimestampstring pragma mark 時間戳轉為 nsstring author zm brief 時間戳轉為 nsstring param timestamp 字串格式的時間戳 param formatstri...