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 perfectStart(String str, String attach) {
        if (str == null) {
            return attach;
        }
        return str.startsWith(attach) ? str : (attach + str);
    }
}