CRC32 function

Syntax

CRC32 (string)

Description

Use the CRC32 function to return a 16-bit cyclical redundancy code.

If string is the null value, null is returned.

Example

This example uses the CRC function to return a number that is a cyclic redundancy code for the specified string:

MyString = "This is any arbitrary string value"
CheckValue = CRC32(MyString)  ;* returns 36235