StringExtensions 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提供用于将字符串值转换为其他数据类型的实用工具方法。
public static class StringExtensions
type StringExtensions = class
Public Module StringExtensions
- 继承
-
StringExtensions
方法
As<TValue>(String) |
将字符串转换为指定数据类型的强类型值。 |
As<TValue>(String, TValue) |
将字符串转换为指定的数据类型,并指定默认值。 |
AsBool(String) |
将字符串转换为布尔值 (true/false)。 |
AsBool(String, Boolean) |
将字符串转换为布尔值 (true/false),并指定默认值。 |
AsDateTime(String) |
将字符串转换为 DateTime 值。 |
AsDateTime(String, DateTime) |
将字符串转换为 DateTime 值并指定默认值。 |
AsDecimal(String) |
将字符串转换为 Decimal 数字。 |
AsDecimal(String, Decimal) |
将字符串转换为 Decimal 数字并指定默认值。 |
AsFloat(String) |
将字符串转换为 Single 数字。 |
AsFloat(String, Single) |
将字符串转换为 Single 数字并指定默认值。 |
AsInt(String) |
将字符串转换为整数。 |
AsInt(String, Int32) |
将字符串转换为整数,并指定默认值。 |
Is<TValue>(String) |
检查字符串是否可以转换为指定的数据类型。 |
IsBool(String) |
检查字符串是否可以转换为 Boolean (true/false) 类型。 |
IsDateTime(String) |
检查字符串是否可以转换为类型 DateTime 。 |
IsDecimal(String) |
检查字符串是否可以转换为类型 Decimal 。 |
IsEmpty(String) |
检查字符串值是 null 还是空。 |
IsFloat(String) |
检查字符串是否可以转换为类型 Single 。 |
IsInt(String) |
检查字符串是否可以转换为整数。 |