DocumentFormat.OpenXml.VariableReplacer
0.1.0
.NET Core 2.0
Install-Package DocumentFormat.OpenXml.VariableReplacer -Version 0.1.0
dotnet add package DocumentFormat.OpenXml.VariableReplacer --version 0.1.0
<PackageReference Include="DocumentFormat.OpenXml.VariableReplacer" Version="0.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DocumentFormat.OpenXml.VariableReplacer --version 0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DocumentFormat.OpenXml.VariableReplacer, 0.1.0"
#r directive can be used in F# Interactive, C# scripting and .NET Interactive. Copy this into the interactive tool or source code of the script to reference the package.
// Install DocumentFormat.OpenXml.VariableReplacer as a Cake Addin
#addin nuget:?package=DocumentFormat.OpenXml.VariableReplacer&version=0.1.0
// Install DocumentFormat.OpenXml.VariableReplacer as a Cake Tool
#tool nuget:?package=DocumentFormat.OpenXml.VariableReplacer&version=0.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
open-xml-variable-replacer
Simple and lightweight replacer for varibles in OpenXml (DOCX MS Word).
Installation (via Nuget)
Install-Package DocumentFormat.OpenXml.VariableReplacer -Version 0.1.0
Usage
- Register or initialize:
IVariableReplacer _openXmlVariableReplacer = new VariableReplacer();
or some DI like this:
serviceCollection.AddTransient<IVariableReplacer, VariableReplacer>();
- Use:
using (WordprocessingDocument document = WordprocessingDocument.Open(filePath, true))
{
MainDocumentPart mainPart = document.MainDocumentPart;
Dictionary<string, string> replacers = new Dictionary<string, string> {
{"MyVariable", "MyNewText"},
{"MyVariable2", "MyNewText2"},
{"MyVariable3", "MyNewText3"},
// ...
};
_openXmlVariableReplacer.ReplaceVariables(mainPart.Document, replacers);
}
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 2.0
- DocumentFormat.OpenXml (>= 2.7.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.0 | 4,744 | 12/4/2017 |