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 数据类型cardinal 怎么转换成 string?

Delphi 大小排序算法代码

Delphi 文字的高度与宽度: canvas.textextent

Delphi goto 语句的使用

Delphi读取webbrowse中的图片显示在image中

Delphi of 打坐与普通攻击calll调用

Delphi 获取internet缓存文件

Delphi: ttreeview 中禁止双击事件展开或关闭节点

Delphi读写ini文件加锁(独占)

Delphi系统默认语言与系统支持的语言列表

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



打赏

取消

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

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

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

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

评论

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