Table of Content
HAL Forum
function string UpperCase (
string anystring)
Description:
All characters in string are converted to upper cases
Parameters:
anystring string to be converted
procedure ConvertSample()
begin
  string 20 lowertstr;
  string 20 uppertstr;
  
  lowertstr = "hansaworld";
  uppertstr = UpperCase(lowertstr); //returns HANSAWORLD
  return;
end;  
Related topics:
««