記錄一下一些在程式設計過程中常用的方法
1.獲取時間戳
public static long gettimespan()
2.base64編碼
public static string base64code(string message)
3.md5加密
public static string md5create(string value, string signmethod = "md5")
else
// 第四步:把二進位制轉化為大寫的十六進製制
stringbuilder result = new stringbuilder();
for (int i = 0; i < bytes.length; i++)
return result.tostring();
}
4.短鏈結演算法(不記得從哪抄的)
public static string shorturl(string url)
;//對傳入**進行md5加密
string hex = system.web.security.formsauthentication.hashpasswordforstoringinconfigfile(key + url, "md5");
string resurl = new string[4];
for (int i = 0; i< 4; i++)
//把字串存入對應索引的輸出陣列
resurl[i] = outchars;
}return resurl;
}
5.url編碼(對大小寫有要求的情況下)
8.datatable 轉 list>(可用於直接介面返回輸出成json)
public static listdatatabletolist(datatable table)
result.add(item);}}
return result;
}return null;
}
9.(dataset)datatable 轉 ilist(這個原專案裡是別人寫的)
public static ilistdatasettoilist(dataset p_dataset, int p_tableindex)
else}}
}result.add(_t);
}return result;
}
CString的一些常用方法
cstringleft int ncount const 從左邊1開始獲取前ncount 個字元 cstringmid int nfirst const 從左邊第ncount 1 個字元開始,獲取後面所有的字元 cstringmid int nfirst,int ncount const 從左邊第n...
NSString的一些常用方法
nsstring 方法名名詞開頭的不會改變當前物件的內容,動詞開頭會改變物件的內容 把字串str通過字符集 分割 nsstring str aaaa a a s d sd.exe nsarray arr str componentsseparatedbycharactersinset nschara...
一些常用方法的記錄
1.建立臨時目錄 建立臨時目錄 try catch ioexception e 結果 2.正規表示式的組 測試正規表示式 string slippingwindowpointoprand s s s string slippingwindowpointcollectoprand slippingwi...