我想做这样的事情:
SQL.Text := Format('select foo from bar where baz like ''%s%''',[SearchTerm]);
但格式当然不喜欢最后的'%'.那我该怎么逃避呢?\%
?%%
?
或者我必须这样做:
SQL.Text := Format('select foo from bar where baz like ''%s''',[SearchTerm+'%']);
?
在格式字符串中使用另一个%:
SQL.Text := Format('select foo from bar where baz like ''%s%%''',[SearchTerm]);
%%,IIRC.