08-21-2006 12:06 PM
08-21-2006 12:14 PM - edited 08-21-2006 12:14 PM
Is this what you're looking for?
-D
Message Edited by Darren on 08-21-2006 12:15 PM
08-21-2006 12:18 PM
08-21-2006 12:37 PM - edited 08-21-2006 12:37 PM
@lfoitek wrote:
All i need to do is transform a string to boolean array. if there is a character in the string location then a true will occur in the boolean array.
Well, your example input is an array of strings, not a string. Here each array element could be an empty string or the collected works of shakespeare. 😉
Darren's solution will give you a TRUE, if an array element contains at least one character. Here's an alternative that does the same in fewer steps.
For a complete solution, we would also need to know your definition of character. Any ASCII code, including non-printable characters? Only letters A-z? Only single digit numbers?
Message Edited by altenbach on 08-21-2006 10:37 AM