Array of String Values

$RStringN generates a sequence of random strings. The function has following parameters:

  1. Minimum string length. Integer, mandatory.
  2. Maximum string length. Positive integer, mandatory.
  3. Minimal sequence length, default is 1
  4. Maximal sequence length, default is 1
  5. Quote char, empty string means no quote required
  6. Array item separator, empty string means comma

Note: use $Repeat function call instead of this function if you want to tune all $RString options.

Examples

  1. $RStringN(5,10,2,4,') - sequence of strings with length between 5 and 10. Sequence length is random between 2 and 4. The delimiter is comma, quote char is '.