C++ Builder 參考手冊 ? System::Sysutils ? ElementToCharIndex
字符串里面某個編碼單元是字符串里面第幾個字符的構成部分谅海。
頭文件:#include <System.SysUtils.hpp>
命名空間:System::Sysutils
函數(shù)原型:
int __fastcall ElementToCharIndex(const System::AnsiString S, int Index);
int __fastcall ElementToCharIndex(const System::UnicodeString S, int Index);
參數(shù):
- S:字符串;
- Index:編碼單元索引,從 1 開始為第 1 個編碼單元停蕉,UnicodeString 的編碼單元為 char16_t (或 wchar_t)拷恨,AnsiString 的編碼單元為 char惶岭,由于一個字符可能由1個或多個 char16_t 或 char 組成的萍聊,所以第 n 個 char16_t 或 char 不一定是第 n 個字符弊予;
返回值:
- 第 Index 個編碼單元 (char16_t 或 char) 是在字符串里面的第幾個字符的構成部分聊替,從 1 開始為第 1 個字符楼肪;
- 在 AnsiString 里面通常每個英文字符是一個 char,漢字是兩個 char惹悄;在 UnicodeString 里面通常每個英文字符和常用漢字和符號是一個 char16_t春叫,一些不常用的漢字和符號兩個 char16_t。
例子:
- AnsiString 字符串 "Hello玄坴" 當中的第 6 和第 7 個 char 組成第 6 個字符 "玄"泣港;
- AnsiString 字符串 "Hello玄坴" 當中的第 8 和第 9 個 char 組成第 7 個字符 "坴"象缀;
- UnicodeString 字符串 L"土??圭垚???" 當中第 2 和第 3 個 char16_t 組成第 2 個字符 "??";
- UnicodeString 字符串 L"土??圭垚???" 當中第 6 和第 7 個 char16_t 組成第 5 個字符 "??"爷速;
void __fastcall TForm1::Button1Click(TObject *Sender)
{
AnsiString s = "Hello玄坴";
Memo1->Lines->Add(s);
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,1));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,2));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,3));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,4));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,5));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,6));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,7));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,8));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,9));
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button2Click(TObject *Sender)
{
UnicodeString s = L"土??圭垚???";
Memo1->Lines->Add(s);
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,1));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,2));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,3));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,4));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,5));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,6));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,7));
Memo1->Lines->Add(Sysutils::ElementToCharIndex(s,8));
}
運行結果:
相關:
- 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
- <cstdlib>
- std::strlen, std::_fstrlen, std::_tcslen, std::wcslen
- <cstring>
C++ Builder 參考手冊 ? System::Sysutils ? ElementToCharIndex