void AppendChar(CString &strSource, int iAppCout, char cAppChr)
{
for (int i = 0i <iAppCout++i)
{
strSource += cAppChr
}
}
用法:
CString strA = "1234"
AppendChar(strA, 4, ' ')
执行完之后,strA后面就会多四个空格了。
1、首先打开《labview》软件,新建一个模板。2、其次在VI的后面板添加搜索替换字符串函数,给搜索替换字符串函数设置参数。
3、最后给搜索替换字符串函数添加空格显示控件,运行即可。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)