System::String::TrimEnd method
Contents
[
Hide
]String::TrimEnd() const method
Removes all whitespace characters from end of the string.
String System::String::TrimEnd() const
ReturnValue
String with no whitespaces at beginning.
See Also
- Class String
- Class String
- Namespace System
- Library Aspose.PUB for C++
String::TrimEnd(char_t) const method
Removes all occurrences of passed character from end of the string.
String System::String::TrimEnd(char_t ch) const
Parameter | Type | Description |
---|---|---|
ch | char_t | Symbol to remove. |
ReturnValue
Removal result.
See Also
- Class String
- Class String
- Namespace System
- Library Aspose.PUB for C++
String::TrimEnd(const String&) const method
Removes all occurrences of passed characters from end of the string.
String System::String::TrimEnd(const String &anyOf) const
Parameter | Type | Description |
---|---|---|
anyOf | const String& | String of characters to remove. |
ReturnValue
String without removed characters.
See Also
- Class String
- Class String
- Namespace System
- Library Aspose.PUB for C++
String::TrimEnd(const ArrayPtr<char_t>&) const method
Removes all occurrences of passed characters from end of the string.
String System::String::TrimEnd(const ArrayPtr<char_t> &anyOf) const
Parameter | Type | Description |
---|---|---|
anyOf | const ArrayPtr<char_t>& | Array of characters to remove. |
ReturnValue
String without removed characters.
See Also
- Class String
- Typedef ArrayPtr
- Class String
- Namespace System
- Library Aspose.PUB for C++