类 StringExtensions
一组针对字符串的扩展方法,可在 LINQ 查询中使用。
命名空间: Realms
程序集:Realm.dll
语法
public static class StringExtensions
方法
| 编辑本页 查看源代码Contains(string, string, StringComparison)
返回一个值,该值指示指定的子字符串是否出现在此字符串中。
声明
[Obsolete("Use QueryMethods.Contains instead")]
public static bool Contains(this string str, string value, StringComparison comparisonType)
参数
类型 | 名称 | 说明 |
---|---|---|
字符串 | str | 原始字符串。 |
字符串 | 值 | 要查找的字符串。 |
StringComparison | ComparisonType | 确定如何比较此字符串和值的枚举值之一。 |
返回:
类型 | 说明 |
---|---|
bool |
|
异常
类型 | 条件 |
---|---|
ArgumentNullException |
|
ArgumentException | 当 |
Like(string, string, bool)
在指定的字符串和模式之间执行“类似”比较。
声明
[Obsolete("Use QueryMethods.Like instead")]
public static bool Like(this string str, string pattern, bool caseSensitive = true)
参数
类型 | 名称 | 说明 |
---|---|---|
字符串 | str | 要与模式进行比较的字符串。 |
字符串 | 模式 | 要比较的模式。 |
bool | 区分大小写 | 如果设置为 |
返回:
类型 | 说明 |
---|---|
bool |
|