Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static final String TAG_OPEN = "";
    public static final String TAG_CLOSE = ",";

    public static String deparseText(String text) {
        if (text.contains(TAG_OPEN)) {
            return text.replace(TAG_OPEN, "").replace(TAG_CLOSE, "");
        }

        return text;
    }
}