Returns the number of characters fully contained in the first MaxLen bytes of a string.
function ByteToCharLen(const S: string; MaxLen: Integer): Integer;
int ByteToCharLen(const AnsiString S, int MaxLen);
SysUtils
Call ByteToCharLen to determine the number of characters represented by a portion of a string. ByteToCharLen counts characters until it reaches MaxLen bytes or the end of the string, whichever comes first.
When working with multi-byte character systems (MBCS), the value returned by ByteToCharLen may be less than MaxLen or the length of the string.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|