Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static String ntrim(String str) {
        if (str == null)
            return null;
        str = str.trim();
        if (str.length() == 0)
            return null;
        return str;
    }
}