[Overview][Types][Procedures and functions][Variables][Index] |
Split string in list of null-terminated strings
Source position: unixutil.pp line 40
function StringToPPChar( |
S: PChar; |
ReserveEntries: Integer |
):PPChar; |
var S: AnsiString; |
ReserveEntries: Integer |
):PPChar; |
StringToPPChar splits the string S in words, replacing any whitespace with zero characters. It returns a pointer to an array of pchars that point to the first letters of the words in S. This array is terminated by a Nil pointer.
The function does not add a zero character to the end of the string unless it ends on whitespace.
The function reserves memory on the heap to store the array of PChar; The caller is responsible for freeing this memory.
This function can be called to create arguments for the various Exec calls.
None.
|
Concert an array of string to an array of null-terminated strings |
|
|
Execute process using environment |
Program Example70; { Program to demonstrate the StringToPPchar function. } Uses UnixUtil; Var S : String; P : PPChar; I : longint; begin // remark whitespace at end. S:='This is a string with words. '; P:=StringToPPChar(S,0); I:=0; While P[i]<>Nil do begin Writeln('Word ',i,' : ',P[i]); Inc(I); end; FreeMem(P,i*SizeOf(Pchar)); end.