Hello
Lets say I have 10 variables thatI want to check if they are null ( "" )
instead of writing:
if( $var1 eq "" && $var2 eq "" && $var2 eq "" && .... $var10 eq ""){ Do something }
can I do this in a more "minimalistic" way like
if([$var1..$var10] eq ""){ Do something}
Regards/D_S
Lets say I have 10 variables thatI want to check if they are null ( "" )
instead of writing:
if( $var1 eq "" && $var2 eq "" && $var2 eq "" && .... $var10 eq ""){ Do something }
can I do this in a more "minimalistic" way like
if([$var1..$var10] eq ""){ Do something}
Regards/D_S