How to check a string is empty or null?

We always face a situation where we have to check whether the string is empty(non-null) or null. Most of the time we fail to check null or empty string as we consider them as same terms but actually, these both terms are different. Let’s see the different ways to check null or empty string. string industry=””; […]

Read More