Skip to content

Instantly share code, notes, and snippets.

View henry2man's full-sized avatar
📱
Fluuuuuteringgg 💙

Enrique Cardona henry2man

📱
Fluuuuuteringgg 💙
View GitHub Profile
@rponte
rponte / StringUtils.java
Last active September 12, 2024 16:18
Removing accents and special characters in Java: StringUtils.java and StringUtilsTest.java
package br.com.triadworks.rponte.util;
import java.text.Normalizer;
public class StringUtils {
/**
* Remove toda a acentuação da string substituindo por caracteres simples sem acento.
*/
public static String unaccent(String src) {