Question: how to use StringTool operations on a list

a:=["34mt5","tru532","64E22N"]

I thought this command worked on Lists.

Select(HasDigit,a)
    Error, (in StringTools:-Select) second argument must be a string

So then I thought maybe map might work

map(HasDigit,b)
     [true,true,true]

okay closer. 

Select(map(HasDigit, c), c)
     Error, (in StringTools:-Select) second argument must be a string

Can't figure out how to get around that string problem

 

 

 

 

Please Wait...