In Delphi 7, how do I escape a percent sign (%) in the Format function? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T13:03:06Zhttp://stackoverflow.com/feeds/question/267487http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/267487/in-delphi-7-how-do-i-escape-a-percent-sign-in-the-format-function4In Delphi 7, how do I escape a percent sign (%) in the Format function?Blorgbeard2008-11-06T02:33:40Z2008-11-06T10:27:54Z
<p>I want to do something like this:</p>
<pre><code>SQL.Text := Format('select foo from bar where baz like ''%s%''',[SearchTerm]);
</code></pre>
<p>But Format doesn't like that last '%', of course. So how can I escape it? \%? %%? </p>
<p>Or do I have to do this:</p>
<pre><code>SQL.Text := Format('select foo from bar where baz like ''%s''',[SearchTerm+'%']);
</code></pre>
<p>?</p>
http://stackoverflow.com/questions/267487/in-delphi-7-how-do-i-escape-a-percent-sign-in-the-format-function/267499#2674994Answer by moobaa for In Delphi 7, how do I escape a percent sign (%) in the Format function?moobaa2008-11-06T02:40:56Z2008-11-06T02:40:56Z<p>%% , IIRC.</p>
http://stackoverflow.com/questions/267487/in-delphi-7-how-do-i-escape-a-percent-sign-in-the-format-function/267506#26750612Answer by Robert Gamble for In Delphi 7, how do I escape a percent sign (%) in the Format function?Robert Gamble2008-11-06T02:44:33Z2008-11-06T02:44:33Z<p>Use another % in the format string:</p>
<pre><code>SQL.Text := Format('select foo from bar where baz like ''%s%%''',[SearchTerm]);
</code></pre>
http://stackoverflow.com/questions/267487/in-delphi-7-how-do-i-escape-a-percent-sign-in-the-format-function/268227#2682271Answer by TOndrej for In Delphi 7, how do I escape a percent sign (%) in the Format function?TOndrej2008-11-06T10:27:54Z2008-11-06T10:27:54Z<p>Obligatory:
<a href="http://xkcd.com/327/" rel="nofollow">http://xkcd.com/327/</a>
:-)</p>
<p>Depending on context, your approach might be vulnerable to SQL injection. If the search term comes from user input it would probably be better to use a parameterized query or at least try to sanitize the input.</p>