/ /

XtScript Function: crc32

Calculates the crc32 polynomial of a string.

XtScript crc32 is a function to calculate and return the crc32 code value of a string.

XtScript crc32 function basic syntax:

<!--parser:xtscript-->
	call crc32 $val=...
<!--/parser:xtscript-->

Learn XtScript crc32 function from examples

Calculate Crc32 value of a string

- Code:
<!--parser:xtscript-->
	var $string = Good morning everyone!
	var $string_crc32 = call crc32 $val=$string

	print Message: $string <br/>
	print Crc32 checksum: $string_crc32 
<!--/parser:xtscript-->
- Result:
Message: Good morning everyone!
Crc32 checksum: 2279750469

The Soda Pop