Member | Description |
---|---|
Length | A property that returns the length of the string. |
Compare() | A static method that compares two strings. |
Contains() | Determines if the string contains a specific substring. |
Equals() | Determines if the two strings have the same character data. |
Format() | Formats a string via the {0} notation and by using other primitives. |
Trim() | Removes all instances of specific characters from trailing and leading characters. Defaults to removing leading and trailing spaces. |
Split() | Removes the provided character and creates an array out of the remaining characters on either side. |
Comments
Related