Purpose
Generates a CRC32 for a provided string or binary variable using the Ethernet/Zip polynomial.
Syntax
CRC32 (String | Variable)
String|Variable |
The string or binary variable for which you want to generate a CRC32. |
Example
Dim MyCRC as Integer
Dim MyString as String
MyString = "This is some data to be CRC'd"
Debug (CRC32 (MyString))
|