Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String normalizeName(String name) {
String resp = name.trim();
while (resp.indexOf(" ") != -1) {
resp = resp.replace(" ", " ");
}
return resp;
}
}