Best way to check for blanks
I have a Processing Option (ABC) of type String and I want to check if it's not blank or null. I've seen these two ways.
Can you tell me which way is better please?
1) If ABC is not <Blank> or ABC is not <NULL>
2) If ABC is less than or equal to <Blank>
Thanks