In Checking arrays for exact matches I showed how a simple one-line function can check if a given value is in an array.
Continue Reading »
Building strings for arrays
I don't know about you, but I hate building strings for arrays. That's where you have to wrap each string in double quotes and delimit with a comma, like this:
From
"Once upon a time"
to
"Once","upon","a","time"
Invariably, I make a mistake in typing (stupid fingers!) and have to correct it. So I came up with a way to generate it automatically. Enter the QuoteString function!
Follow Me