/= Divide By Operator

Divides a variable by the right hand value (expression)

Description

The Divide By operator takes the value of the variable specified on the left side of the operator and divides it by the value on the right hand side. Then it assigns the result back to the variable specified on the left side.

It is ostensibly just shorthand for $i = $i / value.

This operator is only available in expressions.

Examples

» $i = 3
» $i /= 2
» $i
1.5

Detail

Strict Types

Unlike with the standard arithmetic operators (+, -, *, /), silent data casting isn’t supported with arithmetic assignments like +=, -=, *= and /=. Not even when strict-types is disabled (read more)

You can work around this by using the slightly longer syntax: variable = value op value, for example:

» $i = "3"
» $i = $i + "2"
» $i
5

See Also


This document was generated from gen/expr/divide-by-op_doc.yaml.

This site's content is rebuilt automatically from murex's source code after each merge to the master branch. Downloadable murex binaries are also built with the website.

Last built on Wed Dec 10 23:24:04 UTC 2025 against commit ec623f9ec623f9e05b9cd816d1c93e90c807e23ff173cd9.

Current version is 7.1.4143 (unknown) which has been verified against tests cases.