Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

public class Main {
    /**
     * Simple method to remove all spaces, parentheses, and hyphens
     * @param input String to adjust
     * @return formatted String
     */
    public static String formatPhoneRemoveFormatting(String input) {
        if (input == null) {
            return null;
        }
        input = input.replace("(", "");
        input = input.replace(")", "");
        input = input.replace("-", "");
        input = input.replace(" ", "");
        input = input.trim();
        return input;
    }
}