Basic Examples 
(3)
 

Create a
List
of the positive integers corresponding to letters "a" to "j":
In[24]:=
[◼]
CorrespondingIntegers
[CharacterRange["a","j"]]
Out[24]=
{1,2,3,4,5,6,7,8,9,10}
———
Create a list of integers starting with 5 and incrementing by 2 each time that correspond to the letters "a" to "j":
In[733]:=
[◼]
CorrespondingIntegers
[CharacterRange["a","j"],5,2]
Out[733]=
{5,7,9,11,13,15,17,19,21,23}
———
Create an operator which, when applied to an expression, creates a list with the same number of parts as that expression in which the first element is 1 and each successive value is 1 higher:
In[769]:=
[◼]
CorrespondingIntegers
[1,1][CharacterRange["a","j"]]
Out[769]=
{1,2,3,4,5,6,7,8,9,10}

Scope 
(4)
 


Applications 
(2)
 


Properties and Relations 
(1)
 
