Code
#include <cstring>
#include <string>
#include <stdexcept>
#include <iostream>
typedef std::string String;
size_t GetTotalUTF8Chars(const String &data)
{
size_t ret = 0;
for (char value : data)
{
if ((value & 0xc0) != 0x80)
{
++ret;
}
}
return ret;
}
String GetUTF8Char(String data, size_t pos)
{
if(pos >= GetTotalUTF8Chars(data))
{
throw std::length_error(u8"Invalid UTF8 character position");
}
String result;
String::const_iterator it = data.begin();
String::const_iterator beginIterator(it);
size_t utf8pos = 0;
if ((data[0] & 0xc0) != 0x80)
{
it++;
}
while (it != data.end())
{
char value = *it;
if ((value & 0xc0) != 0x80)
{
if (pos == utf8pos)
{
return String(beginIterator, it);
}
beginIterator = it;
utf8pos += 1;
}
it++;
}
return String(beginIterator, it);
}
int main()
{
char cstr[] = u8"Hello????World??£A";
String str = String(cstr);
std::cout<<"█ With C String"<<std::endl;
for (size_t i = 0; i < GetTotalUTF8Chars(cstr); i++)
{
std::cout << i <<".- " << GetUTF8Char(cstr, i) << std::endl;
}
std::cout<<"█ With C++ String"<<std::endl;
for (size_t i = 0; i < GetTotalUTF8Chars(str); i++)
{
std::cout << i <<".- " << GetUTF8Char(str, i) << std::endl;
}
str = u8"£A";
printf(u8"Position0 = %s / Position1 = %s
", GetUTF8Char(str,0).c_str(), GetUTF8Char(str, 1).c_str());
try{
std::cout << GetUTF8Char(str, 15) << std::endl;
}
catch(std::exception &ex)
{
std::cout<< "Exception message:" <<ex.what()<<std::endl;
}
return EXIT_SUCCESS;
}
Output
█ With C String
0.- H
1.- e
2.- l
3.- l
4.- o
5.- ??
6.- ??
7.- W
8.- o
9.- r
10.- l
11.- d
12.- ??
13.- £
14.- A
█ With C++ String
0.- H
1.- e
2.- l
3.- l
4.- o
5.- ??
6.- ??
7.- W
8.- o
9.- r
10.- l
11.- d
12.- ??
13.- £
14.- A
Position0 = £ / Position1 = A
Exception message:Invalid UTF8 character position
Your example
str = u8"£A";
printf(u8"%s
", GetUTF8Char(str,0).c_str());
printf(u8"%s
", GetUTF8Char(str,1).c_str());
printf(u8"%s %s
", GetUTF8Char(str,0).c_str(), GetUTF8Char(str, 1).c_str());
Output
£
A
£ A
You can try this code on
Get UTF8 Char(https://repl.it/@JomaCorpFX/Get-UTF8-char#main.cpp)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…