Skip to content

Random Syntax

6.6.1. Random Boolean

Generate random value with boolean type.

  • Target: No Target is required.
  • Data Input: No Data Input is required.
  • Data Output: The random value with boolean type
  • Syntax: random boolean => output;

6.6.2. Random Date

Generate random date by given dateTimeFormat.

  • Target: No Target is required.
  • Data Input: dateTimeFormat: a String value that presents a given date/time value as text in the specified format.
  • Data Output: The random date.
  • Syntax: random date ("") => output;

6.6.3. Random Double

Generate random double numble.

  • Target: No Target is required.
  • Data Input:
    • minimum: minimum value while random. 
    • maximum: maximum value while random.
  • Data Output: The random double.
  • Syntax: random double ("0.0", "0.0") => output;

6.6.4. Random Email

Generate random email.

  • Target: No Target is required.
  • Data Input: The host of email.
  • Data Output: The random email.
  • Syntax: random email ("") => output;

6.6.5. Random Integer

Generate random integer.

  • Target: No Target is required.
  • Data Input:
    • minimum: minimum value while random. 
    • maximum: maximum value while random.
  • Data Output: The random integer number.
  • Syntax: random integer ("0", "0") => output;

6.6.6. Random String

Generate random string.

  • Target: No Target is required.
  • Data Input:
    • minimum: minimum length of string while random 
    • maximum: maximum length of string while random.
  • Data Output: The random string.
  • Syntax: random string ("0", "0") => output;

6.6.7. Random Text

Generate random text.

  • Target: No Target is required.
  • Data Input:
    • minimum: minimum length of string while random 
    • maximum: maximum length of string while random.
  • Data Output: The random string.
  • Syntax: random text ("0", "0") => output;