I want to do smth like concatenating strings:
if (defined(@a)and defined(@b)){@test="@a and@b"}
if sometimes @a is empty then @test="@b"
or if sometimes @b is empty then @test="@a"
if i have another array @c that is not empty then @test="@c and @b and... "all the other arrays that are not empty.
Thanks