StringTools[Iota] - generate string containing character ranges
|
Calling Sequence
|
|
Iota( n )
Iota( m .. n )
Iota( m, n )
|
|
Parameters
|
|
m
|
-
|
positive integer or character
|
n
|
-
|
positive integer or character
|
|
|
|
|
Description
|
|
•
|
The Iota procedure generates strings containing character ranges. Called with one argument n, a positive integer or a character, it generates the string consisting of those characters whose ASCII values are in the range , inclusive. If n is a character (a string of length equal to one), it is equivalent to its ASCII value, given by the Ord procedure.
|
•
|
If Iota is called with two integer arguments (or two character arguments, again taken to be equivalent to their ASCII values), the character string consisting of the characters that fall numerically (in the ASCII character set) between those two values is generated.
|
•
|
The call Iota( m .. n ) is equivalent to Iota( m, n ).
|
•
|
When both m and n are specified, the numeric value of m must be less than or equal to n. Both m and n (or their ASCII numeric equivalent values) must be in the range .
|
|
|
Examples
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
>
|
|
| (3) |
>
|
|
| (4) |
>
|
|
| (5) |
>
|
|
| (6) |
Maple returns an error if the numeric value of the first parameter m is greater than that of the second parameter n.
>
|
|
|
|
Download Help Document
Was this information helpful?