Qt中获取字符串中的汉字,判断是否有汉字,判断特定字符

//提取字符串中的中文字符串
QString myFile::getChinese(QString &str)
{
    //    QString str;
    QString chineseStr;
    int nCount = str.count();
    for(int i = 0 ; i < nCount ; i++)
    {
        QChar cha = str.at(i);
        ushort uni = cha.unicode();
        if(uni >= 0x4E00 && uni <= 0x9FA5)
        {
            //这个字符是中文
            qDebug()<


你可能感兴趣的:(编程语言)