从项目符号列表项

时间:2018-03-08 08:26:51

标签: google-apps-script special-characters google-docs unicode-string bulletedlist

我正在编写文档脚本,以便在文档中出现某些字符时打印某些内容。 问题是我无法读取项目符号列表特殊字符(例如复选标记)

我可以读取网页上复制的复选标记或脚本添加的复选标记(使用追加),但不会读取项目符号列表中添加的复选标记。

有没有办法阅读项目符号列表项?

function myFunction() {
var body = DocumentApp.getActiveDocument().getBody();
var text = [] ;
text = DocumentApp.getActiveDocument().getBody().getParagraphs();
for (var i = 0; i < text.length; i++) 
{
      if ( text[i].findText(String.fromCharCode(0x2713)) != null)
      {
             body.appendParagraph("Para");
       }
}}

0 个答案:

没有答案