Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String textIsNull(String text) {
if (text == null || "".equals(text.trim()) || "null".equalsIgnoreCase(text.trim())) {
return "";
}
return text;
}
}