( |
|
|
|||
Removes all nondigit characters from the string |
Parameters: | |
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: |