Delphi中的StringReplace函数是SysUtils单元中自带的函数:
type
TReplaceFlags = set of (rfReplaceAll, rfIgnoreCase);
function StringReplace(const S, OldPattern, NewPattern: string; Flags: TReplaceFlags): string;
rfReplaceAll:全部置換,rfIgnoreCase:忽略大小写,该函数使用上,全部替换功能不好用。可能是替换的参数为String,针对英文字符的。