Asp.Net類型轉(zhuǎn)換類(通用類)代碼分享
廢話不多說了,直接給大家貼代碼了,具體代碼如下所述:
/// <summary>
/// 類型轉(zhuǎn)換類
/// 處理數(shù)據(jù)庫獲取字段為空的情況
/// </summary>
public static class DBConvert
{
#region------------------ToInt32類型轉(zhuǎn)換------------------
/// <summary>
/// 讀取數(shù)據(jù)庫中字符串并轉(zhuǎn)換成Int32
/// 為空時(shí)返回0
/// </summary>
/// <param name="obj">object類型的值</param>
/// <returns>Int32類型</returns>
public static int ToInt32(object obj)
{
int result = 0;
if (IsInt(Convert.ToString(obj)))
{
result = Convert.ToInt32(obj);
}
else if (obj != null && obj is Enum) //處理非null值類型時(shí)(或者枚舉)
{
result = ((IConvertible)obj).ToInt32(null);
}
return result;
}
/// <summary>
/// 讀取數(shù)據(jù)庫中字符串并轉(zhuǎn)換成Int32
/// 為空時(shí)返回0
/// </summary>
/// <param name="str">string類型的值</param>
/// <returns>Int32類型</returns>
public static int ToInt32(string str)
{
int result = 0;
if (IsInt(str))
{
result = Convert.ToInt32(str);
}
return result;
}
/// <summary>
/// 判斷一個(gè)字符串是否屬于Int類型
/// 如果是的返回true,如果不是返回false
/// </summary>
/// <param name="str">string類型的值</param>
/// <returns>true:是Int的字符串(即可以轉(zhuǎn)換成Int類型),false:不是Int類型的字符串</returns>
public static bool IsInt(string str)
{
bool result = false;
if (str != "" && str!=null)
{
Regex reg = new Regex("^[0-9]*$");
if (reg.IsMatch(str))
{
result = true;
}
}
return result;
}
#endregion
#region------------------ToString類型轉(zhuǎn)換------------------
/// <summary>
/// 讀取數(shù)據(jù)庫中字符串并轉(zhuǎn)換成string
/// </summary>
/// <param name="obj">object類型的值</param>
/// <returns>string類型</returns>
public static string ToString(object obj)
{
string result = "";
if (obj != null)
{
result = Convert.ToString(obj);
}
return result;
}
#endregion
#region------------------ToDouble類型轉(zhuǎn)換------------------
/// <summary>
/// 判斷一個(gè)字符串是否屬于Double類型(包括負(fù)浮點(diǎn)型)
/// 如果是的返回true,如果不是返回false
/// </summary>
/// <param name="str">string類型的值</param>
/// <returns>true:是Double的字符串(即可以轉(zhuǎn)換成Double類型),false:不是Double類型的字符串</returns>
public static bool IsDouble(string str)
{
bool result = false;
if (str != "" && str != null)
{
Regex reg = new Regex(@"^(-?\d+)(\.\d+)?$");
if (reg.IsMatch(str))
{
result = true;
}
}
return result;
}
/// <summary>
/// 讀取數(shù)據(jù)庫中字符串并轉(zhuǎn)換成Int32
/// 為空時(shí)返回0
/// </summary>
/// <param name="obj">object類型的值</param>
/// <returns>Int32類型</returns>
public static double ToDouble(object obj)
{
double result = 0.0;
if (IsDouble(Convert.ToString(obj)))
{
result = Convert.ToDouble(obj);
}
else if (obj != null && obj is Enum) //處理枚舉
{
result = ((IConvertible)obj).ToDouble(null);
}
return result;
}
/// <summary>
/// 讀取數(shù)據(jù)庫中字符串并轉(zhuǎn)換成Int32
/// 為空時(shí)返回0
/// </summary>
/// <param name="str">string類型的值</param>
/// <returns>Int32類型</returns>
public static double ToDouble(string str)
{
double result = 0.0;
if (IsDouble(str))
{
result = Convert.ToDouble(str);
}
return result;
}
#endregion
#region------------------ToDateTime類型轉(zhuǎn)換------------------
/// <summary>
/// 判斷時(shí)間格式是否是時(shí)間類型
/// 如23:10
/// </summary>
/// <param name="str">要判斷的字符串</param>
/// <returns>true:是時(shí)間類型的字符串(即可以轉(zhuǎn)換成時(shí)間類型),false:不是時(shí)間類型的字符串</returns>
public static bool isDateTime(string str)
{
bool result = false;
if (str != "" && str != null)
{
Regex reg = new Regex("(([01]\\d)|(2[0-3])):[0-5]\\d");
if (reg.IsMatch(str))
{
result = true;
}
}
return result;
}
#endregion
}
}
//"^\d+(\.\d+)?$" //非負(fù)浮點(diǎn)數(shù)(正浮點(diǎn)數(shù) + 0)
//"^(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*))$" //正浮點(diǎn)數(shù)
//"^((-\d+(\.\d+)?)|(0+(\.0+)?))$" //非正浮點(diǎn)數(shù)(負(fù)浮點(diǎn)數(shù) + 0)
//"^(-(([0-9]+\.[0-9]*[1-9][0-9]*)|([0-9]*[1-9][0-9]*\.[0-9]+)|([0-9]*[1-9][0-9]*)))$" //負(fù)浮點(diǎn)數(shù)
//"^(-?\d+)(\.\d+)?$" //浮點(diǎn)數(shù)
好了,Asp.Net類型轉(zhuǎn)換類(通用類)代碼分享到此結(jié)束。
下面看下ASP.NET頁面數(shù)據(jù)驗(yàn)證通用類的實(shí)例代碼。
public class PageValidate
{
private static Regex RegPhone = new Regex("^[0-9]+[-]?[0-9]+[-]?[0-9]$");
private static Regex RegNumber = new Regex("^[0-9]+$");
private static Regex RegNumberSign = new Regex("^[+-]?[0-9]+$");
private static Regex RegDecimal = new Regex("^[0-9]+[.]?[0-9]+$");
private static Regex RegDecimalSign = new Regex("^[+-]?[0-9]+[.]?[0-9]+$"); //等價(jià)于^[+-]?\d+[.]?\d+$
private static Regex RegEmail = new Regex("^[\\w-]+@[\\w-]+\\.(com|net|org|edu|mil|tv|biz|info)$");//w 英文字母或數(shù)字的字符串,和 [a-zA-Z0-9] 語法一樣
private static Regex RegCHZN = new Regex("[\u4e00-\u9fa5]");
public PageValidate()
{
}
//數(shù)字字符串檢查#region 數(shù)字字符串檢查
public static bool IsPhone(string inputData)
{
Match m = RegPhone.Match(inputData);
return m.Success;
}
/**//// <summary>
/// 檢查Request查詢字符串的鍵值,是否是數(shù)字,最大長度限制
/// </summary>
/// <param name="req">Request</param>
/// <param name="inputKey">Request的鍵值</param>
/// <param name="maxLen">最大長度</param>
/// <returns>返回Request查詢字符串</returns>
public static string FetchInputDigit(HttpRequest req, string inputKey, int maxLen)
{
string retVal = string.Empty;
if(inputKey != null && inputKey != string.Empty)
{
retVal = req.QueryString[inputKey];
if(null == retVal)
retVal = req.Form[inputKey];
if(null != retVal)
{
retVal = SqlText(retVal, maxLen);
if(!IsNumber(retVal))
retVal = string.Empty;
}
}
if(retVal == null)
retVal = string.Empty;
return retVal;
}
/**//// <summary>
/// 是否數(shù)字字符串
/// </summary>
/// <param name="inputData">輸入字符串</param>
/// <returns></returns>
public static bool IsNumber(string inputData)
{
Match m = RegNumber.Match(inputData);
return m.Success;
}
/**//// <summary>
/// 是否數(shù)字字符串 可帶正負(fù)號(hào)
/// </summary>
/// <param name="inputData">輸入字符串</param>
/// <returns></returns>
public static bool IsNumberSign(string inputData)
{
Match m = RegNumberSign.Match(inputData);
return m.Success;
}
/**//// <summary>
/// 是否是浮點(diǎn)數(shù)
/// </summary>
/// <param name="inputData">輸入字符串</param>
/// <returns></returns>
public static bool IsDecimal(string inputData)
{
Match m = RegDecimal.Match(inputData);
return m.Success;
}
/**//// <summary>
/// 是否是浮點(diǎn)數(shù) 可帶正負(fù)號(hào)
/// </summary>
/// <param name="inputData">輸入字符串</param>
/// <returns></returns>
public static bool IsDecimalSign(string inputData)
{
Match m = RegDecimalSign.Match(inputData);
return m.Success;
}
#endregion
//中文檢測#region 中文檢測
/**//// <summary>
/// 檢測是否有中文字符
/// </summary>
/// <param name="inputData"></param>
/// <returns></returns>
public static bool IsHasCHZN(string inputData)
{
Match m = RegCHZN.Match(inputData);
return m.Success;
}
#endregion
//郵件地址#region 郵件地址
/**//// <summary>
/// 是否是浮點(diǎn)數(shù) 可帶正負(fù)號(hào)
/// </summary>
/// <param name="inputData">輸入字符串</param>
/// <returns></returns>
public static bool IsEmail(string inputData)
{
Match m = RegEmail.Match(inputData);
return m.Success;
}
#endregion
//其他#region 其他
/**//// <summary>
/// 檢查字符串最大長度,返回指定長度的串
/// </summary>
/// <param name="sqlInput">輸入字符串</param>
/// <param name="maxLength">最大長度</param>
/// <returns></returns>
public static string SqlText(string sqlInput, int maxLength)
{
if(sqlInput != null && sqlInput != string.Empty)
{
sqlInput = sqlInput.Trim();
if(sqlInput.Length > maxLength)//按最大長度截取字符串
sqlInput = sqlInput.Substring(0, maxLength);
}
return sqlInput;
}
/**//// <summary>
/// 字符串編碼
/// </summary>
/// <param name="inputData"></param>
/// <returns></returns>
public static string HtmlEncode(string inputData)
{
return HttpUtility.HtmlEncode(inputData);
}
/**//// <summary>
/// 設(shè)置Label顯示Encode的字符串
/// </summary>
/// <param name="lbl"></param>
/// <param name="txtInput"></param>
public static void SetLabel(Label lbl, string txtInput)
{
lbl.Text = HtmlEncode(txtInput);
}
public static void SetLabel(Label lbl, object inputObj)
{
SetLabel(lbl, inputObj.ToString());
}
//字符串清理
public static string InputText(string inputString, int maxLength)
{
StringBuilder retVal = new StringBuilder();
// 檢查是否為空
if ((inputString != null) && (inputString != String.Empty))
{
inputString = inputString.Trim();
//檢查長度
if (inputString.Length > maxLength)
inputString = inputString.Substring(0, maxLength);
//替換危險(xiǎn)字符
for (int i = 0; i < inputString.Length; i++)
{
switch (inputString[i])
{
case '"':
retVal.Append(""");
break;
case '<':
retVal.Append("<");
break;
case '>':
retVal.Append(">");
break;
default:
retVal.Append(inputString[i]);
break;
}
}
retVal.Replace("'", " ");// 替換單引號(hào)
}
return retVal.ToString();
}
/**//// <summary>
/// 轉(zhuǎn)換成 HTML code
/// </summary>
/// <param name="str">string</param>
/// <returns>string</returns>
public static string Encode(string str)
{
str = str.Replace("&","&");
str = str.Replace("'","''");
str = str.Replace("\"",""");
str = str.Replace(" "," ");
str = str.Replace("<","<");
str = str.Replace(">",">");
str = str.Replace("\n","<br>");
return str;
}
/**//// <summary>
///解析html成 普通文本
/// </summary>
/// <param name="str">string</param>
/// <returns>string</returns>
public static string Decode(string str)
{
str = str.Replace("<br>","\n");
str = str.Replace(">",">");
str = str.Replace("<","<");
str = str.Replace(" "," ");
str = str.Replace(""","\"");
return str;
}
public static string SqlTextClear(string sqlText)
{
if (sqlText == null)
{
return null;
}
if (sqlText == "")
{
return "";
}
sqlText = sqlText.Replace(",", "");//去除,
sqlText = sqlText.Replace("<", "");//去除<
sqlText = sqlText.Replace(">", "");//去除>
sqlText = sqlText.Replace("--", "");//去除--
sqlText = sqlText.Replace("'", "");//去除'
sqlText = sqlText.Replace("\"", "");//去除"
sqlText = sqlText.Replace("=", "");//去除=
sqlText = sqlText.Replace("%", "");//去除%
sqlText = sqlText.Replace(" ", "");//去除空格
return sqlText;
}
#endregion
//是否由特定字符組成#region 是否由特定字符組成
public static bool isContainSameChar(string strInput)
{
string charInput = string.Empty;
if (!string.IsNullOrEmpty(strInput))
{
charInput = strInput.Substring(0, 1);
}
return isContainSameChar(strInput, charInput, strInput.Length);
}
public static bool isContainSameChar(string strInput, string charInput, int lenInput)
{
if (string.IsNullOrEmpty(charInput))
{
return false;
}
else
{
Regex RegNumber = new Regex(string.Format("^([{0}])+$", charInput));
//Regex RegNumber = new Regex(string.Format("^([{0}]{{1}})+$", charInput,lenInput));
Match m = RegNumber.Match(strInput);
return m.Success;
}
}
#endregion
//檢查輸入的參數(shù)是不是某些定義好的特殊字符:這個(gè)方法目前用于密碼輸入的安全檢查#region 檢查輸入的參數(shù)是不是某些定義好的特殊字符:這個(gè)方法目前用于密碼輸入的安全檢查
/**//// <summary>
/// 檢查輸入的參數(shù)是不是某些定義好的特殊字符:這個(gè)方法目前用于密碼輸入的安全檢查
/// </summary>
public static bool isContainSpecChar(string strInput)
{
string[] list = new string[] { "123456", "654321" };
bool result = new bool();
for (int i = 0; i < list.Length; i++)
{
if (strInput == list[i])
{
result = true;
break;
}
}
return result;
}
#endregion
}
相關(guān)文章
ASP.net?core使用Autofac實(shí)現(xiàn)泛型依賴注入
這篇文章主要介紹了ASP.net?core使用Autofac實(shí)現(xiàn)泛型依賴注入的方式學(xué)習(xí),有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-04-04
.net 動(dòng)態(tài)標(biāo)題實(shí)現(xiàn)方法
.net 實(shí)現(xiàn)動(dòng)態(tài)標(biāo)題方法,需要的朋友可以參考下。2009-11-11
asp.net 相關(guān)文章實(shí)現(xiàn)方法
大家或許會(huì)覺得很驚訝:為什么靈感之源會(huì)討論SQL?或許應(yīng)該這樣說吧:搞業(yè)務(wù)系統(tǒng),不跟SQL扯上關(guān)系似乎比較難。2009-05-05
.NET 8 強(qiáng)大功能 IHostedService 與 Backgr
.NET 8 中的 IHostedService 和 BackgroundService 提供了強(qiáng)大的工具集,使定時(shí)任務(wù)、后臺(tái)處理以及定期維護(hù)等功能的實(shí)現(xiàn)變得更加直接、高效和靈活,感興趣的朋友跟隨小編一起看看吧2024-11-11
Entity?Framework?Core生成數(shù)據(jù)庫表
這篇文章介紹了Entity?Framework?Core生成數(shù)據(jù)庫表的方法,對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-03-03
用C#中的params關(guān)鍵字實(shí)現(xiàn)方法形參個(gè)數(shù)可變
個(gè)人認(rèn)為,提供params關(guān)鍵字以實(shí)現(xiàn)方法形參個(gè)數(shù)可變是C#語法的一大優(yōu)點(diǎn)。在方法形參列表中,數(shù)組類型的參數(shù)前加params關(guān)鍵字,通??梢栽谡{(diào)用方法時(shí)代碼更加精練2012-01-01
asp.net網(wǎng)站實(shí)現(xiàn)接入QQ登錄示例代碼
相信大家在做開發(fā)的時(shí)候,常會(huì)遇到集成QQ登錄的功能,本文主要說的是利用asp.net代碼的實(shí)現(xiàn)方式,邏輯部分主要還是根據(jù)幫助文檔來的。不懂的同學(xué)可以先看看文檔。下面來一起學(xué)習(xí)學(xué)習(xí)。2016-08-08

