Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static boolean checkMinLength(String value, int min) {
String tmp = value.trim();
if (tmp.length() >= min) {
return true;
} else {
return false;
}
}
}