Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-TableReplace

Aliases: New-HTMLTableReplace
Namespace PSWriteHTML
Aliases
New-HTMLTableReplace

Replaces values in a specified field of a table.

Remarks

This function replaces values in a specified field of a table with the provided replacements.

Examples

Authored help example

EXAMPLE 1


New-TableReplace -FieldName "Status" -Replacements @("Active", "Inactive")
        

Description: Replaces values in the "Status" field with "Active" or "Inactive".

EXAMPLE 2


New-TableReplace -FieldName "Priority" -Replacements @("High", "Medium", "Low")
        

Description: Replaces values in the "Priority" field with "High", "Medium", or "Low".

Common Parameters

This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.

For more information, see about_CommonParameters.

Syntax

New-TableReplace [-FieldName <String>] [-Replacements <String[]>] [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

FieldName String optionalposition: 0pipeline: False
The name of the field in the table where replacements will be made.
Replacements String[] optionalposition: 1pipeline: False
An array of strings containing the values to replace in the specified field.