System.String Extension
Location
- Reference: RemObjects.DataAbstract.dll
- Namespace: RemObjects.DataAbstract.Linq
- Extends: System.String
- Platforms: .NET Core, .NET Framework, .NET Standard
Instance Methods
IsEqualTo
Returns true if the first operand is equal to the second operand; false otherwise. String comparison operation is performed in the StringComparison.Ordinal mode.
method IsEqualTo(value: String): Boolean
Boolean IsEqualTo(String value)
func IsEqualTo(_ value: String) -> Boolean
Function IsEqualTo(value As String) As Boolean
Parameters:
- value: Second operand
IsGreaterThan
Returns true if the first operand is greater than the second operand; false otherwise. String comparison operation is performed in the StringComparison.Ordinal mode.
method IsGreaterThan(value: String): Boolean
Boolean IsGreaterThan(String value)
func IsGreaterThan(_ value: String) -> Boolean
Function IsGreaterThan(value As String) As Boolean
Parameters:
- value: Second operand
IsGreaterThanOrEqualTo
Returns true if the first operand is greater than or equal to the second operand; false otherwise. String comparison operation is performed in the StringComparison.Ordinal mode.
method IsGreaterThanOrEqualTo(value: String): Boolean
Boolean IsGreaterThanOrEqualTo(String value)
func IsGreaterThanOrEqualTo(_ value: String) -> Boolean
Function IsGreaterThanOrEqualTo(value As String) As Boolean
Parameters:
- value: Second operand
IsLessThan
Returns true if the first operand is less than the second operand; false otherwise. String comparison operation is performed in the StringComparison.Ordinal mode.
method IsLessThan(value: String): Boolean
Boolean IsLessThan(String value)
func IsLessThan(_ value: String) -> Boolean
Function IsLessThan(value As String) As Boolean
Parameters:
- value: Second operand
IsLessThanOrEqualTo
Returns true if the first operand is less than or equal to the second operand; false otherwise. String comparison operation is performed in the StringComparison.Ordinal mode.
method IsLessThanOrEqualTo(value: String): Boolean
Boolean IsLessThanOrEqualTo(String value)
func IsLessThanOrEqualTo(_ value: String) -> Boolean
Function IsLessThanOrEqualTo(value As String) As Boolean
Parameters:
- value: Second operand
IsNotEqualTo
Returns true if the first operand is not equal to the second operand; false otherwise. String comparison operation is performed in the StringComparison.Ordinal mode.
method IsNotEqualTo(value: String): Boolean
Boolean IsNotEqualTo(String value)
func IsNotEqualTo(_ value: String) -> Boolean
Function IsNotEqualTo(value As String) As Boolean
Parameters:
- value: Second operand
Like
method Like(value: String): Boolean
Boolean Like(String value)
func Like(_ value: String) -> Boolean
Function Like(value As String) As Boolean
Parameters:
- value: