我正在尝试为Google文档创建一个插件。我想在用户开始输入时动态获取文档中的单词数。
答案 0 :(得分:-1)
假设documentContent
是保存字符串的变量,您可以执行类似的操作。
let documentString = 'a lot of content that the user typed ..';
let wordCount = documentString.split(' ').length;
console.log(wordCount); // This is going to print => 9