Delphi的StringReplace 字符串替换函数


本文整理自网络,侵删。

 Delphi的StringReplace 字符串替换函数
function StringReplace (const S, OldPattern, NewPattern: string; Flags: TReplaceFlags): string;

rfReplaceAll:全部替换
rfIgnoreCase:忽略大小写

For Example:

var
    aStr: String;
begin
    aStr := 'This is a book, not a pen!';
    ShowMessage(StringReplace (aStr, 'a', 'two', []));//This is two book, not a pen!只替换了第一个符合的字
    ShowMessage(StringReplace (aStr, 'a', 'two', [rfReplaceAll]));//This is two book, not two pen!替换了所有符合的字
    aStr := 'This is a book, not A pen!';
    ShowMessage(StringReplace (aStr, 'a', 'two', [rfReplaceAll]));//This is two book, not A pen!只替换了符合的字(小写a)
    ShowMessage(StringReplace (aStr, 'a', 'two', [rfReplaceAll, rfIgnoreCase]));//This is two book, not two pen!不管大小写替换了所有符合的字
end;

相关阅读 >>

Delphi中combobox的datavalue值

vclzip 3.10.1的简单使用示例

Delphi2010中Delphi class explorer妙用

Delphi里实现多线程下载文件并且显示进度到界面

Delphi之木马生成原理(资源文件,和文件流的应用)

Delphi字符串内多个空格合为一个空格

tstrings 的用法

Delphi 内进行音量控制及静音

Delphi中dbgrid控件数据库点击某列按序排列

Delphi 测试磁盘是否具有写访问权限

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...