调用示例代码
std::list<QString> listText;
listText.push_back(QString::fromLocal8Bit("贵州茅台"));
listText.push_back(QString::fromLocal8Bit("中证500"));
listText.push_back(QString::fromLocal8Bit("中证300"));
for (auto& itr : listText)
{
auto spell = PinYinHelper::GetChineseSpell(itr);
std::cout<<"spell:" << spell << std::endl;
}
输出:
头文件
#pragma once
#include <strin