Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
791 views
in Technique[技术] by (71.8m points)

c++17 - Read/Print non-ASCII characters using C++

How read and print the first character of this array? (Not the whole string, only first character).

char data[]= "£A";
printf("%c", data[0]);  

Here, I have tried printf("%c", data[2]);

Output: A

But printf("%c", data[0]); or printf("%c", data[1]); does not print anything (blank output).

question from:https://stackoverflow.com/questions/65545796/read-print-non-ascii-characters-using-c

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

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)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...