Trims white space from a string.
Trims the white space from both ends of the string.
[Visual Basic] Overloads Public Function Trim() As String
[C#] public string Trim();
[C++] public: String* Trim();
[JScript] public function Trim() : String;
Removes the given characters from both ends of the string.
[Visual Basic] Overloads Public Function Trim(Char()) As String
[C#] public string Trim(char[]);
[C++] public: String* Trim(__wchar_t*[]);
[JScript] public function Trim(Char[]) : String;