Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    /**
     * 
     * @param str
     * @return
     */
    public static String uncompact(String str) {
        str = str.replace("___", "#");
        str = str.replace("_", " ");
        str = str.replace("#", " ");
        return str;
    }
}