Java String Sanitize sanitizeUserName(final String userName)

Here you can find the source of sanitizeUserName(final String userName)

Description

sanitize User Name

License

Apache License

Declaration

public static String sanitizeUserName(final String userName) 

Method Source Code

//package com.java2s;
/*//  w  w w .j  ava  2  s .  c o  m
 * =============================================================================
 *
 *   Copyright (c) 2013, The porra-joc-jutge team (http://porra.jutge.org)
 *
 *   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 {
    public static String sanitizeUserName(final String userName) {
        if (userName != null) {
            return userName.replace('.', ' ');
        }
        return null;
    }
}

Related

  1. sanitizeToLong(String origMSISDN)
  2. sanitizeToString(String origMSISDN)
  3. sanitizeTypename(String name)
  4. sanitizeUnicode(String str)
  5. sanitizeUserEmail(String userEmail)
  6. sanitizeVersion(String inVer)
  7. sanitizeWebOutput(String text)
  8. sanitizeYear(int yr)