bool __fastcall IsWordCompleted(const String &AValue)
{
    for (int i = AValue.Length() + 1; --i > 0; )
        if (AValue[i] == -92)
            return false;
    return true;
}

자음 또는 모음 만 있는 글자는 LeadByte 가 FFFFFFA4(-92) 가 되므로 이를 판단하면 된다.

+ Recent posts