Java String Sanitize sanitizeName(String name)

Here you can find the source of sanitizeName(String name)

Description

Returns an identifier from the given string that can be used as resource name.

License

Apache License

Parameter

Parameter Description

Declaration

public static String sanitizeName(String name) 

Method Source Code

//package com.java2s;
/**//from   w w  w  .j a va 2 s. c o  m
 * Copyright (C) 2015 Red Hat, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /**
     * Returns an identifier from the given string that can be used as resource name.
     *
     * @Param String which needs to be sanitized
     * @return
     */
    public static String sanitizeName(String name) {
        if (name != null) {
            return name.replaceAll("[^A-Za-z0-9]+", "-");
        }
        return null;
    }
}

Related

  1. sanitizeMethodName(String methodName)
  2. sanitizeMimeType(final String mimeType)
  3. sanitizeName(String input)
  4. sanitizeName(String name)
  5. SanitizeName(String Name)
  6. sanitizeName(String name)
  7. sanitizeName(String origName)
  8. sanitizeNamespace(String namespace)
  9. sanitizeOperationId(String operationId)