Convert every number in a list or matrix to strings
Hi everyone, just out of curiosity, I wonder if there is a way to convert every numbers in a list to strings?
For eg, I have a list:
listsss = {1, 4, 56, 72, 8, 9, 10};
and I want to convert them into:
listsss = {"1", "4", "56", "72", "8", "9", "10"};
Is there any way to do it by JSL? Any comments will be appreciated. Thank you!