C++ Builder 参考手册 ➙ System::Sysutils ➙ CharToByteIndex
字符串里面某个字符是在字符串里面从第几个编码单元开始的,过时的函数,需要用 CharToElementIndex 代替
头文件:#include <System.SysUtils.hpp>
命名空间:System::Sysutils
函数原型:
int __fastcall CharToByteIndex(const System::UnicodeString S, int Index);
int __fastcall CharToByteIndex(const System::AnsiString 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);
- 过时的函数,需要用 CharToElementIndex 代替;
- 函数内部只是简单的调用 CharToElementIndex ,所以和 CharToElementIndex 是相同的。
例子:
在 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::CharToByteIndex(s,1));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,2));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,3));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,4));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,5));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,6));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,7));
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button2Click(TObject *Sender)
{
UnicodeString s = L"土𪢴圭垚𡋣㙓";
Memo1->Lines->Add(s);
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,1));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,2));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,3));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,4));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,5));
Memo1->Lines->Add(Sysutils::CharToByteIndex(s,6));
}
运行结果:
运行结果1 运行结果2相关:
- 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::CharToElementIndex
- System::Sysutils::CharToElementLen
- System::Sysutils::ElementToCharIndex
- System::Sysutils::ElementToCharLen
- System::Sysutils
- std::mblen
- std::_mbstrlen
- <cstdlib>
- std::strlen, std::_fstrlen, std::_tcslen, std::wcslen
- <cstring>
C++ Builder 参考手册 ➙ System::Sysutils ➙ CharToByteIndex
网友评论