urlencode()
urlencode encodes a string as URL.
urlencode("race result") - returns race%20result
NumberToWords()
NumberToWords(a;b;c) converts a number into English words. b will be added after the integer part, c will be added after the decimal digits.
NumberToWords([EntryFee];"Euro";"Cent") - returns the entry fee in words, e.g. eighteen Euro and twenty Cent
ZahlInWort()
ZahlInWort(a;b;c) converts a number into German words. b will be added after the integer part, c will be added after the decimal digits.
ZahlInWort([EntryFee];"Euro";"Cent") - returns the entry fee in words, e.g. achtzehn Euro und zwanzig Cent
TimeFromString()
The function TimeFromString is the counterpart of the format() function. It converts a time string into a number presenting the number of seconds:
TimeFromString("0:02:03,4") - returns 123.4
md5()
md5(x) calculates the MD5 hash value.
md5("race result") - returns "02185E816175C3FC6255140D2BE222C3"
crc7()
The CRC7 check is required for communication with a number of third-party devices.
The result of the crc7() function is returned as a decimal value.
crc7(2) - returns 34