Operators of the OGNL
Operators of the OGNL
sum (+) : 2 + 4 , 'hello' + 'world'
minus (-) : 5 – 3
multiplication(*) : 9*9
division(/) : 99/3
modulo (%) : 99% 3
increment (++) : ++pre , post++
decrement (--) : post-- , --pre
equality (==) : hello == world
greater than (>) : 19 > 10
less than (<) : 10 < 20
sum (+) : 2 + 4 , 'hello' + 'world'
minus (-) : 5 – 3
multiplication(*) : 9*9
division(/) : 99/3
modulo (%) : 99% 3
increment (++) : ++pre , post++
decrement (--) : post-- , --pre
equality (==) : hello == world
greater than (>) : 19 > 10
less than (<) : 10 < 20