Page 2 of 2

Re: Variables - copying a single value into a new variable

PostPosted: Mon Apr 16, 2018 9:33 am
by bsp9493
I do, and thank you!

Yes, I like less lines of code and more efficiency:)

Thanx!

d

Re: Variables - copying a single value into a new variable

PostPosted: Mon Apr 16, 2018 11:18 am
by jay (support)
FYI, the efficiency is in doing the split() call only once and storing the resulting array. Otherwise, you're doing the split 3 separate times (unnecessarily).