Enter or paste your data in the input fields above
Results update instantly - all processing in your browser
100% free with no signup or account required
工具网络
function initTool() {
document.getElementById('tool-app').innerHTML = '';
}
function doIt() {
var text = document.getElementById('inp').value.toLowerCase();
var words = text.match(/\\b[a-z]+(?:\\'[a-z]+)?\\b/g) | [];
var freq = {};
for (var i=0;i