In Delphi 7, how do I escape a percent sign (%) in the Format function? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T13:03:06Z http://stackoverflow.com/feeds/question/267487 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/267487/in-delphi-7-how-do-i-escape-a-percent-sign-in-the-format-function 4 In Delphi 7, how do I escape a percent sign (%) in the Format function? Blorgbeard 2008-11-06T02:33:40Z 2008-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#267499 4 Answer by moobaa for In Delphi 7, how do I escape a percent sign (%) in the Format function? moobaa 2008-11-06T02:40:56Z 2008-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#267506 12 Answer by Robert Gamble for In Delphi 7, how do I escape a percent sign (%) in the Format function? Robert Gamble 2008-11-06T02:44:33Z 2008-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#268227 1 Answer by TOndrej for In Delphi 7, how do I escape a percent sign (%) in the Format function? TOndrej 2008-11-06T10:27:54Z 2008-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>