>>-XRANGE(--+-------+--+------+--)----------------------------->< +-start-+ +-,end-+
"00"x
, and the default value for end is "FF"x
. If start is greater than end, the values wrap from "FF"x
to "00"x
. If specified, start and end must be single characters.
Example 7.112. Builtin function XRANGE
XRANGE("a","f") -> "abcdef" XRANGE("03"x,"07"x) -> "0304050607"x XRANGE(,"04"x) -> "0001020304"x XRANGE("FE"x,"02"x) -> "FEFF000102"x XRANGE("i","j") -> "ij" /* ASCII */