[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Return a quoted version of a string.
Source position: sysstrh.inc line 109
function AnsiQuotedStr( |
const S: string; |
Quote: Char |
):string; |
AnsiQuotedString quotes the string S and returns the result. This means that it puts the Quote character at both the beginning and end of the string and replaces any occurrence of Quote in S with 2 Quote characters. The action of AnsiQuotedString can be reversed by AnsiExtractQuotedStr.
For an example, see AnsiExtractQuotedStr
None.
|
Removes the first quoted string from a string. |