Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: Open Source License
public class Main {
private static final String NBSP = String.valueOf((char) 160);
private static String trimEx(final String s) {
return s.replace(NBSP, " ").trim();
}
}