Table of Content
HAL Forum
function string StripNonDigits (
string stringname)
Description:
Removes all nondigit characters from the string
Parameters:
stringname string to be modified
//Current time has the format HH:MM:SS, StripNonDigits returns result as HHMMSS

function string StripNonDigitsTime()
BEGIN
  string 255 tstr;

  tstr = StripNonDigits(CurrentTime);

  StripNonDigitsTime = tstr;
  return;
END;
Related topics:
««