如何使用Adobe XI Pro删除基于PDF的短语页面?

时间:2017-06-20 17:16:33

标签: javascript string pdf adobe

这是我第一次在Adobe Pro中使用Actions。我想..

  1. 删除PDF中包含以下任何字符串的所有页面     (Adobe,Word,Excel文档,Excel电子表格)适用于Adobe Pro中的PDF。
  2. 从整个PDF的所有页面中删除常用字符串(CSI,导出,导入)。
  3. 以下代码在网上找到并且地址为#1但是基于1个字符串提取页面,我无法使其工作,我也希望运行多个字符串并删除页面。

    // Iterates over all pages and find a given string and extracts all
    
    // pages on which that string is found to a new file.
    
    
    
    var pageArray = [];
    
    
    
    var stringToSearchFor = "Total";
    
    
    
    for (var p = 0; p < this.numPages; p++) {
    
    // iterate over all words
    
    for (var n = 0; n < this.getPageNumWords(p); n++) {
    
    if (this.getPageNthWord(p, n) == stringToSearchFor) {
    
    pageArray.push(p);
    
    break;
    
    }
    
    }
    
    }
    
    
    
    if (pageArray.length > 0) {
    
    // extract all pages that contain the string into a new document
    
    var d = app.newDoc(); // this will add a blank page - we need to remove that once we are done
    
    for (var n = 0; n < pageArray.length; n++) {
    
    d.insertPages( {
    
    nPage: d.numPages-1,
    
    cPath: this.path,
    
    nStart: pageArray[n],
    
    nEnd: pageArray[n],
    
    } );
    
    }
    
    
    
      // remove the first page
    
      d.deletePages(0);
    
    
    
    }
    

1 个答案:

答案 0 :(得分:2)

  1. 一个单词和两个单词短语选项。
  2. 一个字:

    for (var p=this.numPages-1; p>=0; p--) {  
        if (this.numPages==1) break;  
        for (var n=0; n<this.getPageNumWords(p)-1; n++) {  
            if (this.getPageNthWord(p, n) == "one-word") {  
                this.deletePages(p);  
                break;  
            }  
        }  
    }  
    

    双字:

    for (var p=this.numPages-1; p>=0; p--) {  
        if (this.numPages==1) break;  
        for (var n=0; n<this.getPageNumWords(p)-1; n++) {  
            if (this.getPageNthWord(p, n) == "1st-word" && this.getPageNthWord(p, n+1) == "2nd-word") {  
                this.deletePages(p);  
                break;  
            }  
        }  
    }  
    
    1. 在Adobe XI Pro中,工具 - &gt;保护 - &gt;搜索&amp;删除文字