JHOW pour vérifier si une chaîne est un java de ponctuation

if (Pattern.matches("\\p{Punct}", str)) {
    ...
}
Inna Kim