“Подсчет слов в строке” Ответ

Подсчитать количество слов в строке

public static void main (String[] args) {

     System.out.println("Simple Java Word Count Program");

     String str1 = "Today is Holdiay Day";

     String[] wordArray = str1.trim().split("\\s+");
     int wordCount = wordArray.length;

     System.out.println("Word count is = " + wordCount);
}
Ahmad Mujtaba

Считать слова в строке

function WordCount(str) { 
  return str.split(" ").length;
}

console.log(WordCount("hello world"));
Ngoc Chau

Как считать количество слов в строке

 String name = "Carmen is a fantastic play"; //arbitrary sentence
        
        int numWords = (name.split("\\s+")).length; //split string based on whitespace
                                                //split returns array - find legth of array
        
        System.out.println(numWords);
Luc Botes

Подсчет слов в строке

str.match(/\w+/g).length;
codeager

Ответы похожие на “Подсчет слов в строке”

Вопросы похожие на “Подсчет слов в строке”

Больше похожих ответов на “Подсчет слов в строке” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования