Java tutorial
//package com.java2s; public class Main { private static String formatModel(String model) { return model == null ? null : model.replaceAll("-", "").replaceAll("\\s", "").replaceAll("_", "").replaceAll("\\(", "") .replaceAll("\\)", "").trim(); } }