Here you can find the source of sanitizeVersion(String inVer)
public static String sanitizeVersion(String inVer)
//package com.java2s; //License from project: LGPL public class Main { public static String sanitizeVersion(String inVer) { return inVer.replaceAll(" ", ""); }//from w ww .ja v a 2 s . c o m }