C++ Builder 参考手册 ➙ System::Sysutils ➙ CharToElementIndex
字符串里面某个字符是在字符串里面从第几个编码单元开始的。
头文件:#include
命名空间:System::Sysutils
函数原型:
int __fastcall CharToElementIndex(const System::AnsiString S, int Index);
int __fastcall CharToElementIndex(const System::UnicodeString S, int Index);
参数:
- S:字符串;
- Index:字符索引,从 1 开始为第 1 个字符,UnicodeString 的编码单元为 char16_t (或 wchar_t),AnsiString 的编码单元为 char,由于一个字符可能由1个或多个 char16_t 或 char 组成的,所以第 n 个 char16_t 或 char 不一定是第 n 个字符;
返回值:
- 第 Index 个字符是在字符串里面从第几个编码单元开始的,从 1 开始为第 1 个编码单元 (char16_t 或 char);
- 在 AnsiString 里面通常每个英文字符是一个 char,汉字是两个 char;在 UnicodeString 里面通常每个英文字符和常用汉字和符号是一个 char16_t,一些不常用的汉字和符号两个 char16_t。
例子:
void __fastcall TForm1::Button1Click(TObject *Sender)
{
AnsiString s = L"Hello玄坴";
Memo1->Lines->Add(s);
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,1));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,2));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,3));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,4));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,5));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,6));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,7));
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button2Click(TObject *Sender)
{
UnicodeString s = L"土圭垚㙓";
Memo1->Lines->Add(s);
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,1));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,2));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,3));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,4));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,5));
Memo1->Lines->Add(Sysutils::CharToElementIndex(s,6));
}
运行结果:
相关:
- System::Sysutils::CharToElementIndex
- System::Sysutils::CharToElementLen
- System::Sysutils::ElementToCharIndex
- System::Sysutils::ElementToCharLen
- System::Sysutils::BytesOf
- System::Sysutils::WideBytesOf
- System::Sysutils::PlatformBytesOf
- System::Sysutils::StringOf
- System::Sysutils::WideStringOf
- System::Sysutils::PlatformStringOf
- System::Sysutils::ByteLength
- System::Sysutils::CharLength
- System::Sysutils::StrCharLength
- System::Sysutils::AnsiLastChar
- System::Sysutils::AnsiStrLastChar
- System::Sysutils::AnsiPos
- System::Sysutils::AnsiStrPos
- System::Sysutils::AnsiStrScan
- System::Sysutils::AnsiStrRScan
- System::Sysutils
- std::mblen
- std::_mbstrlen
- std::strlen, std::_fstrlen, std::_tcslen, std::wcslen
C++ Builder 参考手册 ➙ System::Sysutils ➙ CharToElementIndex