A simple function that converts alphabetic values into their respective lowercase value.
function lowcase(s: string): string;
function lowcase(s: string): string;
var
i: integer;
begin
s := upcase(s);
for i := 1 to length(s) do
begin
if s[i] in ['A'..'z'] then // this is to check that s[i] is alphabetic
begin
s[i] := chr(ord(s[i]) + 32); // convert s[i] to a numeric value, then + 32 to it, and convert the final numeric value into a char
end;
end;
lowcase := s;
end;
TrustyTony 888 pyMod Team Colleague Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.