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