%= Modulo Assignment

Symbol

Symbol

Preferred

5.0

%= calculates the value of the left parameter modulo to the value of the right parameter and sets the left parameter to the resulting value. The left parameter should be a variable that contains an integer value. The right parameter must also be an integer.

This symbol does not operate on string values.

[(Variable: 'Left_Parameter') %= Right_Parameter]

<?LassoScript
  (Variable: 'Left_Parameter') %= Right_Parameter;
?>

<?LassoScript
  $Left_Parameter %= Right_Parameter;
?>