/
NikolayIvkin
/
TheAlgorithms
Обзор
Документация
Войти
/
NikolayIvkin
/
TheAlgorithms
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/com/thealgorithms/strings/CountChar.java
20 строк
563 B
B Karthik
fix: change location of others to correct places (#5559)
04 окт 2024, 20:47
Не верифицирован
04 окт 2024, 20:47
042d458
Код
Авторство
О чём код?
package com.thealgorithms.strings; public final class CountChar { private CountChar() { } /** * Counts the number of non-whitespace characters in the given string. * * @param str the input string to count the characters in * @return the number of non-whitespace characters in the specified string; * returns 0 if the input string is null */ public static int countCharacters(String str) { if (str == null) { return 0; } return str.replaceAll("\\s", "").length(); } }