In a beanshell program, I get a value in a variable. Now, if there was no value obtained for this variable, then I want to set this as "Missing"
In a very old version of Beanshell I used the command as shown below to do this--
contact.toString() != ''
However I updated the Beanshell library and now I am getting an error message that says that I cannot put a second apostrophe after the first one (i.e. '' is erroneous).
How do I check correctly for the above condition in Beanshell?