rand

Random field generator

Description

rand can generate random numbers, strings and other data types.

Usage

rand data-type [ max-value ]

Examples

Specifying data-type

Random integer (64-bit on 64-bit machines):

rand int

Specifying custom range

Random integer between 0 and 9:

rand int 9

Random floating point number between 0 and 1:

rand float

Random string, fixed to 5 characters long:

rand str 5

Flags

Detail

Security

WARNING: is should be noted that while rand can produce random numbers and strings which might be useful for password generation, neither the RNG nor the the random string generator (which is ostensibly the same RNG but applied to an array of bytes within the range of printable ASCII characters) are considered cryptographically secure.

See Also


This document was generated from builtins/core/random/rand_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 Thu Aug 15 14:38:34 UTC 2024 against commit 50ed9d650ed9d6df391240d3c2c02e623636e508dfcdad1.

Current version is 6.2.4000 which has been verified against tests cases.