string to identifier



On 1/21/2012 12:51 PM, Adam Majewski wrote:
> How can I convert string to identifier ?
>
> I would like to make a few list for draw package :
> list1, list2 ...
>
> for Denominator:1 thru DenominatorMax step 1 do
> (
>  name:concat("list",string(Denominator)),
>  /* here I should convert string name to identier */
>  name:Givelist /* my function */
> );
>
try
?intern(concat("list", 123));