C++ Builder/함수
Length
딸기우유중독
2018. 12. 6. 22:08
#Length
// 문자열의 길이를 반환
System.UnicodeString.Length
C++
__USTRING_INLINE int UnicodeString::Length() const
Properties
Type | Visibility | Source | Unit | Parent |
function | public | ustring.h |
Description
Returns the length, in characters, of UnicodeString.
Length returns the number of characters (not necessarily bytes) in a UnicodeString object.
ex) {
UnicodeString TestString = “Test String”;
ShowMessage(TestString.Length());
}
728x90