System::String::StartsWith 메서드
내용물
[
숨다
]String::StartsWith(const String&) const method
문자열이 지정된 하위 문자열로 시작하는지 확인합니다.
bool System::String::StartsWith(const String &value) const
| 매개변수 | 형식 | 설명 |
|---|---|---|
| value | const String& | 조회 문자열. |
ReturnValue
문자열이 지정된 부분 문자열로 시작하면 true, 그렇지 않으면 false.
또 보기
- Class String
- Class String
- Namespace System
- Library Aspose.Page for C++
String::StartsWith(const String&, bool, const SharedPtr<System::Globalization::CultureInfo>&) const method
문자열이 지정된 하위 문자열로 시작하는지 확인합니다.
bool System::String::StartsWith(const String &value, bool ignoreCase, const SharedPtr<System::Globalization::CultureInfo> &culture=nullptr) const
| 매개변수 | 형식 | 설명 |
|---|---|---|
| value | const String& | 조회 문자열. |
| ignoreCase | bool | 비교가 대소문자를 구분하지 않는지 여부를 지정합니다. |
| 문화 | const SharedPtr<System::Globalization::CultureInfo>& | 문자열 비교를 수행할 때 사용할 문화권. |
ReturnValue
문자열이 지정된 부분 문자열로 시작하면 true, 그렇지 않으면 false.
또 보기
- Class String
- Typedef SharedPtr
- Class CultureInfo
- Class String
- Namespace System
- Library Aspose.Page for C++
String::StartsWith(const String&, System::StringComparison) const method
문자열이 지정된 하위 문자열로 시작하는지 확인합니다.
bool System::String::StartsWith(const String &value, System::StringComparison comparisonType) const
| 매개변수 | 형식 | 설명 |
|---|---|---|
| value | const String& | 조회 문자열. |
| comparisonType | System::StringComparison | Comparison 모드, 자세한 내용은 System::StringComparison을 참조하십시오. |
ReturnValue
문자열이 지정된 부분 문자열로 시작하면 true, 그렇지 않으면 false.
또 보기
- Class String
- Enum StringComparison
- Class String
- Namespace System
- Library Aspose.Page for C++