Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    static String addHtmlTags(String text) {
        final int n = text.length();
        if (n > 12 && text.substring(0, 6).equals("<html>") && (text.substring(n - 7, n).equals("</html>")))
            return text;
        else
            return "<html>" + text + "</html>";
    }
}