System::String::TrimStart 方法
内容
[
隐藏
]String::TrimStart() const method
删除字符串开头的所有空白字符。
String System::String::TrimStart() const
ReturnValue
String with no whitespaces at beginning.
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Font for C++
String::TrimStart(char_t) const method
删除字符串开头传入字符的所有出现。
String System::String::TrimStart(char_t ch) const
| 参数 | 类型 | 描述 |
|---|---|---|
| ch | char_t | 要移除的符号。 |
ReturnValue
移除结果。
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Font for C++
String::TrimStart(const ArrayPtr<char_t>&) const method
删除字符串开头传入字符集的所有出现。
String System::String::TrimStart(const ArrayPtr<char_t> &anyOf) const
| 参数 | 类型 | 描述 |
|---|---|---|
| anyOf | const ArrayPtr<char_t>& | Array 用于移除的字符数组。 |
ReturnValue
String without removed characters.
另见
- Class String
- Typedef ArrayPtr
- Class String
- Namespace System
- Library Aspose.Font for C++
String::TrimStart(const String&) const method
删除字符串开头传入字符集的所有出现。
String System::String::TrimStart(const String &anyOf) const
| 参数 | 类型 | 描述 |
|---|---|---|
| anyOf | const String& | String 用于移除的字符。 |
ReturnValue
String without removed characters.
另见
- Class String
- Class String
- Namespace System
- Library Aspose.Font for C++