If you have a String object in JavaScript and you want to know the number of words it has, you can achieve this in various ways, lets see some of the code examples.
Example 1: Reading textarea data and finding the number of words in it.
<textarea id="myData" onBlur="getWordCount();"></textarea>
<div id="count"></div>
<script>
function getWordCount() {
var myString = document.getElementById("myData").innerHTML;
document.getElementById("count").innerHTML = myString.split(" ").length;
}
/<script>
Output:

As you can see in the above example we have called a function onBlur of a textarea and read the text as a variable and then called two operations over it. First, we have done split based on space to get the array of words and then used length to get the count.
In the first example there are many ways we can go wrong. It's always better to use the trim() function along with the first example as there might be cases where the first and the last text in the string are spaces and we may get the wrong count, also what if there are multiple spaces between two words.
Example 2: Using regular expressions (RegEx)
Using regular expression is another way of knowing the number of words in a string, lets see an example,
var string = 'This is some random String to get its connt';
console.log(string.match(/\w+/g).length);
Output:
9
JSFiddle: https://jsfiddle.net/u80fx3pa/Have Questions? Post them here!
- Meaning of javascript:void(0) explained with example
- JavaScript : Get url protocol HTTP, HTTPS, FILE or FTP
- How to get UTC (GMT) time using JavaScript
- Add Animated Scrolling to Html Page Title Script
- Examples: Convert String to int in JavaScript
- Get Device Screen Width and Height using javaScript
- Remove items from JavaScript array
- Javascript convert text case from uppercase to lowercase
- [javaScript] Convert text case to lowercase
- How to detect Browser and Operating System Name and Version using JavaScript
- How to send email from JavaScript HTML using mailto
- How to check if a String contains substring or a word using javaScript
- Send Extra Data with Ajax Get or Post Request
- How to get query string in JavaScript HTML location.search
- How to get current URL Location using Javascript HTML
- JavaScript: Check if variable is a number
- JavaScript : Get current page address
- JavaScript: Count Words in a String
- Loading previous page using html button using JavaScript
- npm WARN saveError ENOENT: no such file or directory, open /mnt/c/package.json
- How to Print from JavaScript HTML using window.print
- Submit html form on dropdown menu value selection or change using javascript
- Detect if Cookies are enabled using JavaScript
- Writing your first Hello, World! 🌍 JavaScript code Tutorial
- JavaScript date in yyyy-MM-dd format
- Android Toast position top - Android
- Calculate Area and Circumference of Circle - C-Program
- Struts 2 Hello World Example in Eclipse - Java
- How to display Toast on Button Click : Android - Android
- jQuery : Move to top of the page - jQuery
- Microsoft Stream - This may not be for you, It looks like you don't have permission to watch this video - Microsoft
- Display ls command file sizes in KB (kilobytes) MB (megabytes) or GB (gigabytes) [Linux/macOS] - MacOS
- Command: How to scp a file to remote server location? - HowTos