AnsiDequotedStr
Adam Boduch
AnsiDequotedStr
Moduł: SysUtils
Przykład:
program Foo;
{$APPTYPE CONSOLE}
uses
SysUtils;
var
S : String;
begin
{ dodanie cudzysłowia }
S := AnsiQuotedStr('My mother''s bag', '"');
Writeln(S);
S := AnsiDequotedStr(S, '"');
Writeln(S);
Readln;
end.
Zobacz też: