MOCKSTACKS
EN
Questions And Answers

More Tutorials









Javascript Word Counter

Say you have a <textarea> and you want to retrieve info about the number of:

  • Characters (total)
  • Characters (no spaces)
  • Words
  • lines

  • function wordCount( val ){
     var wom = val.match(/\S+/g);
     return {
     charactersNoSpaces : val.replace(/\s+/g, '').length,
     characters : val.length,
     words : wom ? wom.length : 0,
     lines : val.split(/\r*\n/).length
     };
    }
    
    wordCount( someMultilineText ).words; // (Number of words)
    

    Output

    charactersNoSpaces : 17,
    characters : 17,
    words : 17,
    lines : 1.


    Conclusion

    In this page (written and validated by ) you learned about Javascript Word Counter . What's Next? If you are interested in completing Javascript tutorial, your next topic will be learning about: Javascript Substrings with slice.



    Incorrect info or code snippet? We take very seriously the accuracy of the information provided on our website. We also make sure to test all snippets and examples provided for each section. If you find any incorrect information, please send us an email about the issue: mockstacks@gmail.com.


    Share On:


    Mockstacks was launched to help beginners learn programming languages; the site is optimized with no Ads as, Ads might slow down the performance. We also don't track any personal information; we also don't collect any kind of data unless the user provided us a corrected information. Almost all examples have been tested. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. By using Mockstacks.com, you agree to have read and accepted our terms of use, cookies and privacy policy.