Home » Software Development Resources » Finding Diacritics in a Postgres Table

Finding Diacritics in a Postgres Table

Recently I had the task to find all the Diacritics in a database table. I had to find an easy way to select every row that has a diacritic in the name. The solution was surprisingly simple, but a bit unintuitive. In this article, I will provide you with that solution as well as additional information about how Java and Postgres treat diacritics and other characters.

What is a diacritic?

diacritics key

A Diacritic is a mark or an accent on a letter that indicates that the letter should be pronounced differently. Diacritics are often referred to as accents. The marked letter and the un-marked letter are logically the same letters in the language. Examples of Diacritics are

áàâüñçå

It is important to understand that some characters that we might consider diacritics are not actually diacritics. This is because, In the character’s respective alphabet, they are individual letters. Examples are

Æ æ Ø ø Ł ł

When dealing with diacritics its important to understand how the system will treat certain characters.

sculpture of homer

How does Java deal with Diacritics?

Java handles diacritics in a strict fashion. For these examples, we will use the Normalizer.normalize utility in the Apache Commons-text library. We will see that “Æ æ Ø ø Ł ł”, are not replaced with a similar English analog.

We will use the following method for testing

public static String stripDiacritics(String input){
if ( !Normalizer.isNormalized(input, Normalizer.Form.NFD) ) {
return Normalizer.normalize(input, Normalizer.Form.NFD).replaceAll("\\p{M}+", "");
}
return input;
}

Testing this method will result in the following

 @Test
public void testStripDiacritic(){
assertEquals("aabbsser3ssa35ds", DiacriticUtility.stripDiacritics("aabbsser3ssa35ds"));
assertEquals("This is a funky String", DiacriticUtility.stripDiacritics("Tĥïŝ ĩš â fůňķŷ Šťŕĭńġ"));
assertEquals("Ø or Ł", DiacriticUtility.stripDiacritics("Ø or Ł"));
assertEquals("the German umlauts: a, o, u", DiacriticUtility.stripDiacritics("the German umlauts: ä, ö, ü"));
assertEquals("manana", DiacriticUtility.stripDiacritics("mañana"));
assertEquals("Æ æ Æ æ or Æ æ", DiacriticUtility.stripDiacritics("Ǣ ǣ Ǽ ǽ or Æ æ"));
}

Notice diacritics such as “ůňķŷ” are replaced with “unky”, but “Æ æ” are not replaced with “AE ae”

How does Postgres handle diacritics?

three blue circle disks floating on top of each other

Postgres treats diacritics the same as Java but has a different effect on the other characters. In Postgres, we use the unaccent extension.

To install unccent run the following.

CREATE EXTENSION unaccent;

Now let’s run a simple query to see how characters are treated.

select unaccent('Tĥïŝ ĩš â fůňķŷ Šťŕĭńġ | łŁØø | ä, ö, ü | Ǣ ǣ Ǽ ǽ æ or Æ æ') 
FROM blog.diacritic_blog LIMIT1;

Output:

This is a funky String | lLOo | a, o, u | Ǣ ǣ Ǽ ǽ ae or AE ae
star trek picard looking down with his hand over his eyes

Notice that the expected diacritics are resolved, but so is “Æ æ ł Ł Ø ø”. Interestingly enough is the Postgres’s unaccent does not resolve “Ǣ ǣ Ǽ ǽ” to “Æ æ Æ æ” or to “AE ae AE as”.

Finding diacritics in a Postgres Table?

As we saw above there are a lot of special cases regarding how Postgres will handle diacritics and special characters. This solution to finding the rows with diacritics will not take those edge cases into account but will give you a basic solution to querying the table for diacritics. You can add regex and additional where clauses to the query as needed.

This example will use the following

CREATE TABLE blog.diacritic_blog(
id bigserial NOT NULL,
name varchar(255) NOT NULL,
CONSTRAINT pk_diacritic_id PRIMARY KEY (id)
);

INSERT INTO blog.diacritic_blog(name) values ('aabbsser3ssa35ds');
INSERT INTO blog.diacritic_blog(name) values ('Tĥïŝ ĩš â fůňķŷ Šťŕĭńġ');
INSERT INTO blog.diacritic_blog(name) values ('Ø or Ł or łŁØø');
INSERT INTO blog.diacritic_blog(name) values ('the German umlauts: ä, ö, ü');
INSERT INTO blog.diacritic_blog(name) values ('mañana');
INSERT INTO blog.diacritic_blog(name) values ('Ǣ ǣ Ǽ ǽ æ or Æ æ');

The following query will return 5 rows:

SELECT name, unaccent(name) FROM blog.diacritic_blog where name != unaccent(name);

OUTPUT:

Tĥïŝ ĩš â fůňķŷ ŠťŕĭńġThis is a funky String
Ø or Ł or łŁØøO or L or lLOo
the German umlauts: ä, ö, üthe German umlauts: a, o, u
mañanamanana
Ǣ ǣ Ǽ ǽ æ or Æ æǢ ǣ Ǽ ǽ ae or AE ae

Summary

Finding all the Diacritics in a Postgres table is simple if not a bit unintuitive. However, handling diacritics and non-English alphabet characters is a minefield. Hopefully, now you have a basic understanding of diacritics and how Java and Postgres treat these characters.

The examples from this article can be found on GitHub at https://github.com/djchi82/DiacriticBlogProject.

Scroll to Top