Как подсчитать, сколько раз определенный текст "Tom" появляется в документе.
Полный код
using System;
using System.IO;
using System.Linq;
using SautinSoft.Document;
namespace Example
{
class Program
{
static void Main(string[] args)
{
// Get your free 100-day key here:
// https://sautinsoft.com/start-for-free/
FindText();
}
/// <summary>
/// Find a specific text in DOCX document.
/// </summary>
/// <remarks>
/// Details: https://sautinsoft.com/products/document/help/net/developer-guide/find-text-in-docx-document-net-csharp-vb.php
/// </remarks>
static void FindText()
{
string filePath = @"..\..\..\example.docx";
DocumentCore dc = DocumentCore.Load(filePath);
string searchText = "document";
int count = dc.Content.Find(searchText).Count();
Console.WriteLine("The text: \"" + searchText + "\" - was found " + count.ToString() + " time(s).");
Console.ReadKey();
}
}
}
Imports System
Imports System.IO
Imports System.Linq
Imports SautinSoft.Document
Module Sample
Sub Main()
FindText()
End Sub
''' Get your free 100-day key here:
''' https://sautinsoft.com/start-for-free/
''' <summary>
''' Find a specific text in DOCX document.
''' </summary>
''' <remarks>
''' Details: https://sautinsoft.com/products/document/help/net/developer-guide/find-text-in-docx-document-net-csharp-vb.php
''' </remarks>
Sub FindText()
Dim filePath As String = "..\..\..\example.docx"
Dim dc As DocumentCore = DocumentCore.Load(filePath)
Dim searchText As String = "document"
Dim count As Integer = dc.Content.Find(searchText).Count()
Console.WriteLine("The text: """ & searchText & """ - was found " & count.ToString() & " time(s).")
Console.ReadKey()
End Sub
End Module
Если вам нужен пример кода или у вас есть вопрос: напишите нам по адресу support@sautinsoft.com или спросите в онлайн-чате (правый нижний угол этой страницы) или используйте форму ниже: