Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {

    public static boolean containStr(String totalStr, String destStr) {
        if (totalStr != null)
            return totalStr.indexOf(destStr) >= 0;

        return false;
    }
}