ClassClrExpressionStringMethods
Contains all the string operations available in RadExpressionEditor.
Definition
Namespace:Telerik.Expressions
Assembly:Telerik.Windows.Data.dll
Syntax:
public static class ClrExpressionStringMethods
Inheritance: objectClrExpressionStringMethods
Methods
Concat(string, string)
Concatenates two specified instances of System.String.
Contains(string, string)
Returns a value indicating whether the specified System.String object occurs within this string.
ConvertToString(object)
Returns a string representation of an object.
EndsWith(string, string)
Determines whether the end of this string instance matches the specified string.
Format(string, object)
Replaces the format item in a specified System.String with the text equivalent of the value of a specified System.Object instance.
IndexOf(string, string)
Reports the index of the first occurrence of the specified string in this instance.
Insert(string, int, string)
Inserts String2 into String1 at the position specified by StartPosition.
LastIndexOf(string, string)
Reports the index position of the last occurrence of a specified string within this instance.
Len(string)
Gets the number of characters in a string.
Lower(string)
Returns the String in lowercase.
LowerInvariant(string)
Returns a copy of this System.String object converted to lowercase using the casing rules of the invariant culture.
PadLeft(string, int)
Left-aligns characters in the defined string, padding its left side with white space characters up to a specified total length.
PadRight(string, int)
Right-aligns characters in the defined string, padding its left side with white space characters up to a specified total length.
Remove(string, int, int)
Deletes a specified number of characters from this instance, beginning at a specified position.
Replace(string, string, string)
Returns a copy of String1, in which value2 has been replaced with String3.
StartsWith(string, string)
Determines whether the beginning of this string instance matches the specified string.
Substring(string, int, int)
Retrieves a value from a string. The value starts at a specified character position and has a specified length.
Trim(string)
Removes all occurrences of white space characters from the beginning and end of the string.
Upper(string)
Returns String in uppercase.
UpperInvariant(string)
Returns a copy of this System.String object converted to uppercase using the casing rules of the invariant culture.