Unaccent letters : String replace « Data Type « Java






Unaccent letters

    

import java.text.Normalizer;

public class Main {
  public static void main(String args[]) throws Exception {
    System.out.println(formatString(""));
  }

  public static String formatString(String s) {
    String temp = Normalizer.normalize(s, Normalizer.Form.NFD);
    return temp.replaceAll("[^\\p{ASCII}]", "");
  }
}

   
    
    
    
  








Related examples in the same category

1.String Replace
2.String Replace 2String Replace 2
3.Replace \r\n with the
tag
4.Remove leading white space from a string
5.Remove leading whitespace a String using regular expressions
6.Remove trailing whitespace
7.Replace multiple whitespaces between words with single blank
8.Replacing Characters in a String: replace() method creates a new string with the replaced characters.
9.Replacing Substrings in a String
10.Replace characters in string
11.String.replaceAll() can be used with String
12.Replaces all occurrences of given character with new one and returns new String object.
13.Replaces only first occurrences of given String with new one and returns new String object.
14.Replaces all occurrences of given String with new one and returns new String object.
15.Only replace first occurence
16.Optimize String operations
17.Replace every occurrences of a string within a string
18.Replace/remove character in a String: replace all occurrences of a given character
19.To replace a character at a specified position
20.Find, replace and remove strings
21.Java Implementation of Pythons string.replace()
22.Replace New Lines
23.Replace string
24.Replace strings
25.Replace substrings within string
26.Replaces all occurences of a substring inside a string
27.Replaces each substring of this string that matches toReplace
28.Replaces substrings
29.Replaces all instances of oldString with newString in string
30.Substitute sub-strings in side of a string
31.Replace string
32.Returns the given string with all found oldSubStr replaced by newSubStr.
33.Returns a new string resulting from replacing all occurrences of oldStr in this string with newStr.
34.Find and replace all occurrences of the string