.net|解决RichEdit line insertion error的方法
本文来自:http://blog.csdn.net/hellogv/
在RICHEDIT 中使用StringReplace这个字符串替换函数时,很容易就出现"RichEdit line insertion error".
解决的方法:
【.net|解决RichEdit line insertion error的方法】TStrings *tmp=new TStringList;
//中间变量,用于暂时保存字符串列表的内容 String Spilth=MemoB->Strings[i];
if(Trim(Spilth)!="") { tmp->Text=StringReplace(MemoA->Text,Spilth,"",TReplaceFlags() << rfReplaceAll);
} TStringStream *str=new TStringStream(tmp->Text);
//使用字符串流来转移数据,这就搞定,而且速度超快!! MemoA->LoadFromStream(str);
tmp->Free();
str->Free();
推荐阅读
- parallels|parallels desktop 解决网络初始化失败问题
- 考研英语阅读终极解决方案——阅读理解如何巧拿高分
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- SpringBoot调用公共模块的自定义注解失效的解决
- 解决SpringBoot引用别的模块无法注入的问题
- Spark|Spark 数据倾斜及其解决方案
- 解决SyntaxError:|解决SyntaxError: invalid syntax
- Spectrum|Spectrum 区块偶尔停止同步问题排查与解决笔记
- 一劳永逸地解决词汇量不够的问题
- Hexo代码块前后空白行问题