1234567891011121314151617 |
- Program Example59;
- { This program demonstrates the AnsiStrLower function }
- Uses sysutils;
- Procedure Testit (S : Pchar);
- begin
- Writeln (S,' -> ',AnsiStrLower(S))
- end;
- Begin
- Testit('AN UPPERCASE STRING');
- Testit('Some mixed STring');
- Testit('a lowercase string');
- End.
|