如何在字符串中加空格3
发布网友
发布时间:2023-11-05 20:30
我来回答
共1个回答
热心网友
时间:2024-03-13 02:11
自己写个函数就行了,如下:
void AppendChar(CString &strSource, int iAppCout, char cAppChr)
{
for (int i = 0; i < iAppCout; ++i)
{
strSource += cAppChr;
}
}
用法:
CString strA = "1234";
AppendChar(strA, 4, ' ');
执行完之后,strA后面就会多四个空格了。