Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean isInfook(String str) {
if (str != null && (!str.trim().equals("")) && (str.length() > 10) && (str.length() < 1000)) {
return true;
} else {
return false;
}
}
}