Unit IFS_UTL.PAS
Types:
TIfPascalParser
TIfPasToken
TIfList
TIfStringList
Functions:
procedure SkipWhiteSpace(data: PIfPascalParser);
Jump to next token and skip all whitespaces and comment between.
function GetToken(data: PIfPascalParser): string;
Returns the token in a string, for example to read a string.
procedure ParseToken(data: PIfPascalParser);
Read current token. You should only call this when you've assigned the text and other parameters of data and when you changed the position.
function FastUpperCase(const s: string): string;
FastUppercase a string.
function FastLowerCase(const s: string): string;
FastLowercase a string
function Fw(const S: string): string;
Return the first word of that string.
procedure Rs(var S: string);
Remove the first word a that string.