Hi All,
Could you pls answer the below questions
1.I have a List of numbers (0 to 9) , Which function will use to print the number
Thanks in Advance!.
Discussion posts and replies are publicly visible
What do you mean with "print"? Only a single number or the whole list?
Please describe the desired output.
And when asking questions, following this post is a good way to start.
codeblog.jonskeet.uk/.../
Hi Stefan,
Thank you for your response.
My Input : 0 to 9
I am expecting output is = 0,1,2,3,4,5,6,7,8,9
Which function will used to get the above output
Hi there,
Have you tried enumerate(10)?
Regards,
Acacio B
Hi vinothkannar,
Hope this might be helpful
joinarray(enumerate(10),","),
and
if you want to display the values in an Interface u can use the below code
a!richTextDisplayField( value: a!richTextItem( text: joinarray(enumerate(10),",") ))
wirking now ..Thanks
Thank you somuch. it is working now
enumerate(9)