Java program to remove special characters, spaces and other junk from the given String text

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

How to remove zero width spaces?
.replaceAll("\u200B", ""); //not working

Saberwulfy