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中显示gif动画

Delphi 判断文件扩展名函数

Delphi enumwindows回调函数获取qq2009窗体句柄

Delphi的rtti实现对象的xml持久化

Delphi xe6 android拨号函数

Delphi xe中使用tchart绘制平滑曲线

Delphi xe 启动关闭start page 页错误提示

idhttpserver允许跨域访问

Delphi tpath.combine(); {结合路径}

Delphi 不用控件用函数实现发email

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



打赏

取消

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

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

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

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

评论

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