05-08-2018 09:06 AM
@dkfire wrote:
How many more property nodes are you using on the references of your controls and indicators?
Also a Loop-up table like that could be made with Variant Attributes.
Note that a variant's tree search is a lot faster (log(O)) then an array search (O), but still slower then getting a value from an array (1).
05-08-2018 09:09 AM
@Yamaeda wrote:
@GerdW wrote:
why do you need 7 string functions to parse the control label? Why not use ScanFromString with "R%1sF%d#%d"!?
I would also go with a LUT using variant attributes!
That looks like a censored curse word, which in general is how i feel about regular expressions! (though they can be magical at times)
/Y
For the record (you're not saying it, but someone might draw the conclusion): "R%1sF%d#%d" is not a regular expression, but a Scan From String format specifier.
05-08-2018 09:15 AM
Fair point.