f$MD5Hash
f$MD5Hash
Create a unique key from a given text. The key consists of 16 hexadecimal values. If the source text is identical, an identical key is also created. If the texts are different then the key is also different. In this way keys can be created which allow for comparing texts that are also very long.
The resulting key is returned.
Syntax: | Hash = f$MD5Hash ( Text ) | ||
| Argument | Type | Meaning |
| Text | String | Text from which the hash is to be created |
Result: | String | Hash | |
Examples: | Text ='ePOS development system' Result = f$MD5Hash ( Text ) | ||