JSFiddle - React, Tailwind, and code Playground
HTML
<textarea></textarea>
<input type="submit" value="go">
JavaScript
$("input[type=submit]").click(function() {
var text = $("textarea").val();
str = text.replace(/\W/g, '');
var final = str.length;
alert(final);
});