Class StringExtensions
This static class holds methods that can be used to express MongoDB specific operations in LINQ queries.
public static class StringExtensions
- Inheritance
-
StringExtensions
- Inherited Members
Methods
AnyStringIn(IEnumerable<string>, params StringOrRegularExpression[])
Returns true if any value in s is present in values (corresponds to the $in filter operator).
public static bool AnyStringIn(this IEnumerable<string> s, params StringOrRegularExpression[] values)
Parameters
s
IEnumerable<string>The values to test.
values
StringOrRegularExpression[]The values to test against.
Returns
- bool
True if any value in s is present in values.
AnyStringIn(IEnumerable<string>, IEnumerable<StringOrRegularExpression>)
Returns true if any value in s is present in values (corresponds to the $in filter operator).
public static bool AnyStringIn(this IEnumerable<string> s, IEnumerable<StringOrRegularExpression> values)
Parameters
s
IEnumerable<string>The values to test.
values
IEnumerable<StringOrRegularExpression>The values to test against.
Returns
- bool
True if any value in s is present in values.
AnyStringNin(IEnumerable<string>, params StringOrRegularExpression[])
Returns true if any value in s is not present in values (corresponds to the $nin filter operator).
public static bool AnyStringNin(this IEnumerable<string> s, params StringOrRegularExpression[] values)
Parameters
s
IEnumerable<string>The values to test.
values
StringOrRegularExpression[]The values to test against.
Returns
- bool
True if any value in s is not present in values.
AnyStringNin(IEnumerable<string>, IEnumerable<StringOrRegularExpression>)
Returns true if any value in s is not present in values (corresponds to the $nin filter operator).
public static bool AnyStringNin(this IEnumerable<string> s, IEnumerable<StringOrRegularExpression> values)
Parameters
s
IEnumerable<string>The values to test.
values
IEnumerable<StringOrRegularExpression>The values to test against.
Returns
- bool
True if any value in s is not present in values.
IndexOfBytes(string, string)
Searches a string for an occurrence of a substring and returns the UTF-8 byte index (zero-based) of the first occurrence.
public static int IndexOfBytes(this string s, string value)
Parameters
Returns
- int
The byte index of the first occurrence, or -1 if not found.
IndexOfBytes(string, string, int)
Searches a string for an occurrence of a substring and returns the UTF-8 byte index (zero-based) of the first occurrence.
public static int IndexOfBytes(this string s, string value, int startIndex)
Parameters
Returns
- int
The byte index of the first occurrence, or -1 if not found.
IndexOfBytes(string, string, int, int)
Searches a string for an occurrence of a substring and returns the UTF-8 byte index (zero-based) of the first occurrence.
public static int IndexOfBytes(this string s, string value, int startIndex, int count)
Parameters
Returns
- int
The byte index of the first occurrence, or -1 if not found.
StrLenBytes(string)
Returns the number of UTF-8 encoded bytes in the specified string.
public static int StrLenBytes(this string s)
Parameters
s
stringThe string.
Returns
- int
The number of UTF-8 bytes.
StringIn(string, params StringOrRegularExpression[])
Returns true if s is present in values (corresponds to the $in filter operator).
public static bool StringIn(this string s, params StringOrRegularExpression[] values)
Parameters
s
stringThe value to test.
values
StringOrRegularExpression[]The values to test against.
Returns
- bool
True if s is present in values.
StringIn(string, IEnumerable<StringOrRegularExpression>)
Returns true if s is present in values (corresponds to the $in filter operator).
public static bool StringIn(this string s, IEnumerable<StringOrRegularExpression> values)
Parameters
s
stringThe value to test.
values
IEnumerable<StringOrRegularExpression>The values to test against.
Returns
- bool
True if s is present in values.
StringNin(string, params StringOrRegularExpression[])
Returns true if s is not present in values (corresponds to the $nin filter operator).
public static bool StringNin(this string s, params StringOrRegularExpression[] values)
Parameters
s
stringThe value to test.
values
StringOrRegularExpression[]The values to test against.
Returns
- bool
True if s is not present in values.
StringNin(string, IEnumerable<StringOrRegularExpression>)
Returns true if s is not present in values (corresponds to the $nin filter operator).
public static bool StringNin(this string s, IEnumerable<StringOrRegularExpression> values)
Parameters
s
stringThe value to test.
values
IEnumerable<StringOrRegularExpression>The values to test against.
Returns
- bool
True if s is not present in values.
SubstrBytes(string, int, int)
Returns the number of UTF-8 encoded bytes in the specified string.
public static string SubstrBytes(this string s, int startIndex, int length)
Parameters
Returns
- string
The number of UTF-8 bytes.