Here you can find the source of normalize(final String input)
Parameter | Description |
---|---|
input | a parameter |
private static String normalize(final String input)
//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}]", ""); } }