Java String Strip stripUnsupportedChars(String str)

Here you can find the source of stripUnsupportedChars(String str)

Description

strip Unsupported Chars

License

Open Source License

Declaration

public static String stripUnsupportedChars(String str) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2014 Salesforce.com, inc..
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * //from  w ww .j  a  v a2s  .  c  o m
 * Contributors:
 *     Salesforce.com, inc. - initial API and implementation
 ******************************************************************************/

import java.util.Collection;

import java.util.List;

import java.util.Map;

public class Main {
    public static String stripUnsupportedChars(String str) {
        if (isEmpty(str)) {
            return str;
        }
        return str.replaceAll(":", "");
    }

    public static boolean isEmpty(Object obj) {
        return null == obj;
    }

    public static boolean isEmpty(Object[] objs) {
        return objs == null || objs.length == 0;
    }

    public static boolean isEmpty(byte[] objs) {
        return objs == null || objs.length == 0;
    }

    public static boolean isEmpty(Collection<?> col) {
        return col == null || col.isEmpty();
    }

    public static boolean isEmpty(List<?> col) {
        return col == null || col.isEmpty();
    }

    public static boolean isEmpty(Map<?, ?> map) {
        return map == null || map.isEmpty();
    }

    public static boolean isEmpty(String str) {
        return str == null || str.length() == 0;
    }
}

Related

  1. stripNamespaceDeclarations(String xml)
  2. stripTags(final String tagged)
  3. stripTags(String html)
  4. stripTags(String in)
  5. stripTrailingChar(String input, char c)