• <menu id="w2i4a"></menu>
  • logo Spire.Doc系列教程

    文檔首頁>>Spire.Doc系列教程>>Spire.Doc系列教程(18):在word文檔中查找和替換并刪除特殊符號

    Spire.Doc系列教程(18):在word文檔中查找和替換并刪除特殊符號


    更多資源查看:Spire.XLS工作表教程 | Spire.Doc系列教程 | Spire.PDF系列教程


    下載Spire.Doc最新試用版



    Spire.Doc for .NET是一個專業(yè)的Word .NET庫,設(shè)計用于幫助開發(fā)人員高效地開發(fā)創(chuàng)建、閱讀、編寫、轉(zhuǎn)換和打印任何來自.NET( C#, VB.NET, ASP.NET)平臺的Word文檔文件的功能。以下示例將詳細講述如何使用Spire.Doc在Word文檔中查找和替換并刪除特殊符號。

    C# Word 查找和替換功能


    Spire.Doc 為開發(fā)者提供了查找和替換功能的方法,我們可以通過document.FindString()方法查找文檔中某一個特定詞匯并對它進行高亮替換,也可以通過document.FindAllString()方法查找文本中所有地該詞匯對將找到的詞匯使用Document.Replace()方法進行替換更改。該文將詳細介紹如何使用C#來實現(xiàn)word查找,替換和高亮顯示功能。


    //新建一個word文檔對象并加載sample文檔
    Document document = new Document();
    document.LoadFromFile("Test.docx", FileFormat.Docx2010);
    
    //查找一個特定字符串 ”Spire.Doc”
    TextSelection selection = document.FindString("Spire.Doc", false, true);
    TextRange range = selection.GetAsOneRange();
    
    //替換字符串
    range.Text = "Replaced Text";
    
    //設(shè)置高亮顏色
    range.CharacterFormat.HighlightColor = Color.Yellow;
    
    //查找文檔中所有字符串 ”Microsoft”
    TextSelection[] text = document.FindAllString("Microsoft", false, true);
    
    //設(shè)置高亮顏色
    foreach (TextSelection seletion in text)
    {
        seletion.GetAsOneRange().CharacterFormat.HighlightColor = Color.Green;
    }
    
    //使用 ”MS” 替換所有 ”Microsoft”
    document.Replace("Microsoft", "MS", false, true);
    
    //保存文檔
    document.SaveToFile("Result.docx", FileFormat.Docx2010);


    效果圖如下:

    Find-and-replace.png

    C# Word 中添加和刪除特殊符號


    Word允許通過插入符號操作來向文檔中添加一些鍵盤上沒有的特殊符號,本文將介紹如何使用Spire.Doc來進行同樣的操作。


    //實例化一個Document對象
     Document doc = new Document();
     //向文檔中添加一個Section對象
     Section sec = doc.AddSection();
    
     //在這個section上添加一個段落
     Paragraph p = sec.AddParagraph();
     p.AppendText("這是一個打勾的復(fù)選框:");
    
     //在段落之后追加一個打勾的復(fù)選框,這個符號的十六進制是"\u0052",
     //也可以用十進制(char)82).ToString()來表示它。
     //TextRange tr=p.AppendText("\u0052");
     TextRange tr= p.AppendText(((char)82).ToString());
    
     //設(shè)置字體,可以在word中查看對應(yīng)的符號是什么字體,這里打勾的復(fù)選框是Wingdings2字體
     tr.CharacterFormat.FontName = "Wingdings 2";
    
     //添加一個新的段落,并添加一個郵件圖標
     Paragraph p1 = sec.AddParagraph();
     p1.AppendText("這是一個郵件圖標:");
     //TextRange tr1 = p1.AppendText("\u002A");
     TextRange tr1 = p1.AppendText(((char)42).ToString());
     tr1.CharacterFormat.FontName = "Wingdings";
    
     //添加一個新的段落,并添加一個笑臉符號
     Paragraph p2 = sec.AddParagraph();
     p2.AppendText("這是一個笑臉符號:");
     //TextRange tr2 = p2.AppendText("\u004A");
     TextRange tr2 = p2.AppendText(((char)74).ToString());
     tr2.CharacterFormat.FontName = "Wingdings";
    
     //保存文檔
     doc.SaveToFile("添加特殊符號.docx");


    效果圖如下:

    insert-and-remove-symbols-1.png


    刪除特殊符號


    //實例化一個Document對象
     Document doc = new Document();
     //加載文檔
     doc.LoadFromFile("特殊符號.docx");
    
     //用FindString方法找到要刪除的郵件圖標
     TextRange tr = doc.FindString("\u002A", true, true).GetAsOneRange();
    
     //定位到這個TextRange所在的段落然后刪除這個TextRange
     Paragraph p = tr.OwnerParagraph;
     p.ChildObjects.Remove(tr);
    
     //保存文檔
     doc.SaveToFile("test.docx", FileFormat.Docx2013);


    效果圖如下:

    insert-and-remove-symbols-2.png


    如果你有任何問題或意見,可在下方評論區(qū)留言,點擊資源列表查看更多教程資源~

    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();