Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String replaceStringSpaceToUnderScore(String str) {
if (str == null || str.length() == 0) {
return "";
}
return str.replace(" ", "_");
}
}