Skip to main content

/ Division Operator

Laurence MorganLess than 1 minute

/ Division Operator

Divides one numeric value from another (expression)

Description

The Division Operator divides the left hand number by the right hand number in an expression.

Examples

Expression

» 3/2
1.5

Statement

out (3/2)
» 1.5

Detail

Type Safety

Because shells are historically untyped, you cannot always guarantee that a numeric-looking value isn't a string. To solve this problem, by default Murex assumes anything that looks like a number is a number when performing addition.

» str = "2"
» int = 3
» $str + $int
1

For occasions when type safety is more important than the convenience of silent data casting, you can disable the above behaviour via config:

» config set proc strict-types false
» $str + $int
Error in `expr` (0,1): cannot Add with string types
                    > Expression: $str + $int
                    >           : ^
                    > Character : 1
                    > Symbol    : Scalar
                    > Value     : '$str'

See Also


This document was generated from gen/expr/division_op_doc.yamlopen in new window.

Last update:
Contributors: Laurence Morgan