Java String Normalize normalize(final String input)

Here you can find the source of normalize(final String input)

Description

Normalize a string

License

Apache License

Parameter

Parameter Description
input a parameter

Declaration

private static String normalize(final String input) 

Method Source Code

//package com.java2s;
/*//  w  w w .ja v a 2s. c o  m
 ************************************************************************************
 * Copyright (C) 2001-2011 encuestame: system online surveys Copyright (C) 2011
 * encuestame Development Team.
 * Licensed under the Apache Software License version 2.0
 * 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.
 ************************************************************************************
 */

import java.text.Normalizer;
import java.text.Normalizer.Form;

public class Main {
    /**
     * Normalize a string
     * @param input
     * @return
     */
    private static String normalize(final String input) {
        if (input == null || input.length() == 0)
            return "";
        return Normalizer.normalize(input, Form.NFD).replaceAll("[^\\p{ASCII}]", "");
    }
}

Related

  1. normaliseConll(String input)
  2. normaliseUnicode(String unicodeText, char[] mappings)
  3. normalize(final String s)
  4. normalize(final String s)
  5. normalize(final String string)
  6. normalize(final String string)