1.判断对象是否为Int32类型的数字:
///
/// 判断对象是否为Int32类型的数字
///
///
///
public static bool IsNumeric(object expression)
{
return expression != null && IsNumeric(expression.ToString());
}
///
/// 判断对象是否为Int32类型的数字
///
///
///
public static bool IsNumeric(string expression)
{
var str = expression;
if (!(str.Length > 0) || str.Length > 11 || !System.Text.RegularExpressions.Regex.IsMatch(str, @"^[-]?[0-9]*[.]?[0-9]*$")) return false;
return (str.Length < 10) || (str.Length == 10 && str[0] == '1') ||
(str.Length == 11 && str[0] == '-' && str[1] == '1');
}
复制
2.是否为Double类型:
///
/// 是否为Double类型
///
///
///
public static bool IsDouble(object expression)
{
if (expression != null)
return System.Text.RegularExpressions.Regex.IsMatch(expression.ToString(), @"^([0-9])[0-9]*(\.\w*)?$");
return false;
}
复制
3.将字符串转换为数组:
///
/// 将字符串转换为数组
///
/// 字符串
/// 字符串数组
public static string[] GetStrArray(string str)
{
return str.Split(new char[',']);
}
复制
4.将数组转换为字符串:
///
/// 将数组转换为字符串
///
/// List
/// 分隔符
/// String
public static string GetArrayStr(List list, string speater)
{
var sb = new StringBuilder();
for (int i = 0; i < list.Count; i++)
{
if (i == list.Count - 1)
{
sb.Append(list[i]);
}
else
{
sb.Append(list[i]);
sb.Append(speater);
}
}
return sb.ToString();
}
复制
5.object型转换为bool型:
///
/// object型转换为bool型
///
///
/// 缺省值
/// 转换后的bool类型结果
public static bool StrToBool(object expression, bool defValue)
{
if (expression != null)
return StrToBool(expression, defValue);
return defValue;
}
复制
6.string型转换为bool型:
///
/// string型转换为bool型
///
///
/// 缺省值
/// 转换后的bool类型结果
public static bool StrToBool(string expression, bool defValue)
{
if (expression == null) return defValue;
if (string.Compare(expression, "true", StringComparison.OrdinalIgnoreCase) == 0)
return true;
return string.Compare(expression, "false", StringComparison.OrdinalIgnoreCase) != 0 && defValue;
}
复制
7.将对象转换为Int32类型:
///
/// 将对象转换为Int32类型
///
/// 要转换的字符串
/// 缺省值
/// 转换后的int类型结果
public static int ObjToInt(object expression, int defValue)
{
return expression != null ? StrToInt(expression.ToString(), defValue) : defValue;
}
复制
8.将字符串转换为Int32类型:
///
/// 将字符串转换为Int32类型
///
/// 要转换的字符串
/// 缺省值
/// 转换后的int类型结果
public static int StrToInt(string expression, int defValue)
{
if (string.IsNullOrEmpty(expression) || expression.Trim().Length >= 11 ||
!System.Text.RegularExpressions.Regex.IsMatch(expression.Trim(), @"^([-]|[0-9])[0-9]*(\.\w*)?$"))
return defValue;
int rv;
if (int.TryParse(expression, out rv))
return rv;
return Convert.ToInt32(StrToFloat(expression, defValue));
}
复制
9.Object型转换为decimal型:
///
/// Object型转换为decimal型
///
///
/// 缺省值
/// 转换后的decimal类型结果
public static decimal ObjToDecimal(object expression, decimal defValue)
{
if (expression != null)
return StrToDecimal(expression.ToString(), defValue);
return defValue;
}
复制
10.string型转换为decimal型:
///
/// string型转换为decimal型
///
///
/// 缺省值
/// 转换后的decimal类型结果
public static decimal StrToDecimal(string expression, decimal defValue)
{
if ((expression == null) || (expression.Length > 10))
return defValue;
decimal intValue = defValue;
{
bool isDecimal = System.Text.RegularExpressions.Regex.IsMatch(expression, @"^([-]|[0-9])[0-9]*(\.\w*)?$");
if (isDecimal)
decimal.TryParse(expression, out intValue);
}
return intValue;
}
复制
11.Object型转换为float型:
///
/// Object型转换为float型
///
/// 要转换的字符串
///
/// 缺省值
/// 转换后的int类型结果
public static float ObjToFloat(object expression, float defValue)
{
if (expression != null)
return StrToFloat(expression.ToString(), defValue);
return defValue;
}
复制
12.string型转换为float型:
///
/// string型转换为float型
///
///
/// 缺省值
/// 转换后的int类型结果
public static float StrToFloat(string expression, float defValue)
{
if ((expression == null) || (expression.Length > 10))
return defValue;
float intValue = defValue;
{
bool isFloat = System.Text.RegularExpressions.Regex.IsMatch(expression, @"^([-]|[0-9])[0-9]*(\.\w*)?$");
if (isFloat)
float.TryParse(expression, out intValue);
}
return intValue;
}
复制
13.将对象转换为日期时间类型(提供几种操作方法份的重载):
///
/// 将对象转换为日期时间类型
///
/// 要转换的字符串
/// 缺省值
/// 转换后的int类型结果
public static DateTime StrToDateTime(string str, DateTime defValue)
{
if (!string.IsNullOrEmpty(str))
{
DateTime dateTime;
if (DateTime.TryParse(str, out dateTime))
return dateTime;
}
return defValue;
}
///
/// 将对象转换为日期时间类型
///
/// 要转换的字符串
/// 转换后的int类型结果
public static DateTime StrToDateTime(string str)
{
return StrToDateTime(str, DateTime.Now);
}
///
/// 将对象转换为日期时间类型
///
/// 要转换的对象
/// 转换后的int类型结果
public static DateTime ObjectToDateTime(object obj)
{
return StrToDateTime(obj.ToString());
}
///
/// 将对象转换为日期时间类型
///
/// 要转换的对象
/// 缺省值
/// 转换后的int类型结果
public static DateTime ObjectToDateTime(object obj, DateTime defValue)
{
return StrToDateTime(obj.ToString(), defValue);
}
复制
14.将对象转换为字符串:
///
/// 将对象转换为字符串
///
/// 要转换的对象
/// 转换后的string类型结果
public static string ObjectToStr(object obj)
{
if (obj == null)
return "";
return obj.ToString().Trim();
}
复制