gpt4 book ai didi

delphi - 在 Delphi 7 中,如何转义 Format 函数中的百分号 (%)?

转载 作者:行者123 更新时间:2023-12-03 14:34:45 27 4
gpt4 key购买 nike

我想做这样的事情:

SQL.Text := Format('select foo from bar where baz like ''%s%''',[SearchTerm]);

当然,Format 不喜欢最后一个“%”。那么我怎样才能摆脱它呢? \%%%

或者我必须这样做:

SQL.Text := Format('select foo from bar where baz like ''%s''',[SearchTerm+'%']);

最佳答案

在格式字符串中使用另一个%:

SQL.Text := Format('select foo from bar where baz like ''%s%%''',[SearchTerm]);

关于delphi - 在 Delphi 7 中,如何转义 Format 函数中的百分号 (%)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/267487/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com