I’m building a piston where certain address can be one of three and then something happens.
How do I separate those addresses in value line. Should I use , or ; or something else?
"Is not any of".. should I use colon, semicolon, or
Jani
#1
WCmore
#2
Comparing X to a list, here are a few good examples using contains().
(it is very possible that that entire thread is Wiki
material)
Jani
#3
Hmm… okay… I’m not sure where to start though.
Should I first create string variable which reports address1 and then compare it to that “contains” thing?
WCmore
#4
There are many ways to skin a cat…
Personally, I like to dump the data into a string variable
, and then run the comparison off of that.
Jani
#5
Ok, have to learn that…at some point. Meanwhile found different approach by using a lot of variables but hey it’s working.