Java Utililty Methods String Underscore

List of utility methods to do String Underscore

Description

The list of methods to do String Underscore are organized into topic(s).

Method

StringunderscoreSpaces(String str)
underscore Spaces
if (str == null) {
    return null;
str = str.replace(" ", "_");
return str;