关于C++对汉字拼音的处理(2)

时间:2023-12-17 15:04:56

对于前面获取字符串汉字全拼音的功能,大家应该有个了解了。现在我又综合广大网友流传的获取字符串汉字拼音首字母的功能进行了整理。介绍如下

这个功能写的稍微有点复杂 使用3个函数解决了获取字符串汉字首拼音串的问题。

代码如下:

 bool GetChineseCodeGBK(const char *pChineseCharacter, char *pGBK, const size_t nChineseCharacter = , const size_t nGBK = )
{
bool is_success = false; do
{
int len = sprintf_s(pGBK, nGBK, "%X%X", (unsigned char)pChineseCharacter[], (unsigned char)pChineseCharacter[]);
if (len<)
return is_success = false;
else
return is_success = true;
} while (false); return is_success;
}
 char GetFirstCharacter(const char *pGBK, const size_t nGBK = )
{
int nCode2 = atol(pGBK);//error
int nCode = strtol(pGBK, NULL, );//ok
int nCode3;
sscanf_s(pGBK, "%x",&nCode3); //ok
int areacode[] = { , , , , , , , , , , , , , , , , , , , , , , , , , , };
for (int i = ; i < ; i++)
{
if (areacode[i] <= nCode && nCode < areacode[i + ])
{
return (char)('A'+i);
}
}
return (char);
}
 std::string get_first_pinyin_string(const std::string &strHanzi)
{
std::string retFistPinyinString;
char retFistPinyin; if (strHanzi.empty() == true)
{
return ;
} for (size_t i = ; i < strHanzi.length(); ++i)
{
char GBK[] = { }; if (static_cast<unsigned char>(strHanzi[i]) < 0x80)
{
retFistPinyinString += strHanzi[i];
continue;
} if (GetChineseCodeGBK(&strHanzi[i], GBK))
{
retFistPinyin = GetFirstCharacter(GBK);
if ((char) != retFistPinyin)
{
retFistPinyinString += retFistPinyin;
++i;
}
}
} return retFistPinyinString;
}

下面是测试代码

 int _tmain(int argc, _TCHAR* argv[])
{ std::string str_test10("任晓霞l2;哈哈哈mu男人");
std::string str_test10_rt;
str_test10_rt = get_first_pinyin_string(str_test10); return ;
}

有兴趣的朋友可以试试啦。