@INT[n]:  Returns the integer part of the number n. @INT will perform an implicit @EVAL on its argument, so you can use an arithmetic expression for n.

 

Examples:

 

echo %@int[1234]

1234

 

echo %@int[1.234]

1

 

echo %@int[12.34]

12