Replace-FileString Extension

Replace-FileString extension replaces strings in files using a regular expression. Supports multi-line searching and replacing. Include in AppDeployToolkitExtensions.ps1 to use it.

<pre class=“brush: powershell; gutter: true; first-line: 1; highlight: []; html-script: false”>`
Function Replace-FileString {
<#
.SYNOPSIS
Replaces strings in files using a regular expression.

.DESCRIPTION
Replaces strings in files using a regular expression. Supports
multi-line searching and replacing.

.PARAMETER Pattern
Specifies the regular expression pattern.

.PARAMETER Replacement
Specifies the regular expression replacement pattern.

.PARAMETER Path
Specifies the path to one or more files. Wildcards are permitted. Each
file is read entirely into memory to support multi-line searching and
replacing, so performance may be slow for large files.

.PARAMETER LiteralPath
Specifies the path to one or more files. The value of the this
parameter is used exactly as it is typed. No characters are interpreted
as wildcards. Each file is read entirely into memory to support
multi-line searching and replacing, so performance may be slow for
large files.

.PARAMETER CaseSensitive
Specifies case-sensitive matching. The default is to ignore case.

.PARAMETER Multiline
Changes the meaning of ^ and so they match at the beginning and end, respectively, of any line, and not just the beginning and end of the entire file. The default is that ^ and , respectively, match the
beginning and end of the entire file.

.PARAMETER UnixText
Causes to match only linefeed (\n) characters. By default, matches
carriage return+linefeed (\r\n). (Windows-based text files usually use
\r\n as line terminators, while Unix-based text files usually use only
\n.)

.PARAMETER Overwrite
Overwrites a file by creating a temporary file containing all
replacements and then replacing the original file with the temporary
file. The default is to output but not overwrite.

.PARAMETER Force
Allows overwriting of read-only files. Note that this parameter cannot
override security restrictions.

.PARAMETER Encoding
Specifies the encoding for the file when -Overwrite is used. Possible
values are: ASCII, BigEndianUnicode, Unicode, UTF32, UTF7, or UTF8. The
default value is ASCII.

.INPUTS
System.IO.FileInfo.

.OUTPUTS
System.String without the -Overwrite parameter, or nothing with the
-Overwrite parameter.

.LINK
about_Regular_Expressions

.LINK
http://windowsitpro.com/scripting/replacing-strings-files-using-powershell

.EXAMPLE
C:&gt;Replace-FileString '(Ferb) and (Phineas)' '$2 and $1' Story.txt
This command replaces the string 'Ferb and Phineas' with the string
'Phineas and Ferb' in the file Story.txt and outputs the file. Note
that the pattern and replacement strings are enclosed in single quotes
to prevent variable expansion.

.EXAMPLE
C:&gt;Replace-FileString 'Perry' 'Agent P' Ferb.txt -Overwrite
This command replaces the string 'Perry' with the string 'Agent P' in
the file Ferb.txt and overwrites the file.

.NOTES
Originally written as a cmdlet by Bill Stewart (bstewart@iname.com)
Modified to work as an extension in PSAppDeployToolkit by Husnu Kaplan

#>

[CmdletBinding(DefaultParameterSetName="Path",
SupportsShouldProcess=$TRUE)]
param(
[parameter(Mandatory=$TRUE,Position=0)]
[String] $Pattern,
[parameter(Mandatory=$TRUE,Position=1)]
[String] [AllowEmptyString()] $Replacement,
[parameter(Mandatory=$TRUE,ParameterSetName="Path",
Position=2,ValueFromPipeline=$TRUE)]
[String[]] $Path,
[parameter(Mandatory=$TRUE,ParameterSetName="LiteralPath",
Position=2)]
[String[]] $LiteralPath,
[Switch] $CaseSensitive,
[Switch] $Multiline,
[Switch] $UnixText,
[Switch] $Overwrite,
[Switch] $Force,
[String] $Encoding="ASCII"
)

begin {

Throw an error if $Encoding is not valid.

$encodings = @("ASCII","BigEndianUnicode","Unicode","UTF32","UTF7",
"UTF8")
if ($encodings -notcontains $Encoding) {
throw "Encoding must be one of the following: $encodings"
}

Extended test-path: Check the parameter set name to see if we

should use -literalpath or not.

function test-pathEx($path) {
switch ($PSCmdlet.ParameterSetName) {
"Path" {
test-path $path
}
"LiteralPath" {
test-path -literalpath $path
}
}
}

Extended get-childitem: Check the parameter set name to see if we

should use -literalpath or not.

function get-childitemEx($path) {
switch ($PSCmdlet.ParameterSetName) {
"Path" {
get-childitem $path -force
}
"LiteralPath" {
get-childitem -literalpath $path -force
}
}
}

Outputs the full name of a temporary file in the specified path.

function get-tempname($path) {
do {
$tempname = join-path $path ([IO.Path]::GetRandomFilename())
}
while (test-path $tempname)
$tempname
}

Use '\r$' instead of '$' unless -UnixText specified because

'&#039; alone matches &#039;\n&#039;, not &#039;\r\n&#039;. Ignore &#039;\$&#039; (literal &#039;').

if (-not $UnixText) {
$Pattern = Pattern -replace &#039;(?&lt;!\\)\$&#039;, &#039;\r'
}

Build an array of Regex options and create the Regex object.

$opts = @()
if (-not $CaseSensitive) { $opts += "IgnoreCase" }
if ($MultiLine) { $opts += "Multiline" }
if ($opts.Length -eq 0) { $opts += "None" }
$regex = new-object Text.RegularExpressions.Regex $Pattern, $opts

Get the name of this function and write header

[string]${CmdletName} = PSCmdlet.MyInvocation.MyCommand.Name Write-FunctionHeaderOrFooter -CmdletName {CmdletName} -CmdletBoundParameters $PSBoundParameters -Header
}

process {

The list of items to iterate depends on the parameter set name.

switch ($PSCmdlet.ParameterSetName) {
"Path" { $list = $Path }
"LiteralPath" { $list = $LiteralPath }
}

Iterate the items in the list of paths. If an item does not exist,

continue to the next item in the list.

foreach ($item in $list) {
if (-not (test-pathEx $item)) {
Write-Log -Message "Unable to find 'item&#039;.&quot; -Source {CmdletName}
continue
}

# Iterate each item in the path. If an item is not a file,
# skip all remaining items.
foreach ($file in get-childitemEx $item) {
  if ($file -isnot [IO.FileInfo]) {
    Write-Log -Message &quot;&#039;$file&#039; is not in the file system.&quot; -Source ${CmdletName}
    break
  }

  # Get a temporary file name in the file&#039;s directory and create
  # it as a empty file. If set-content fails, continue to the next
  # file. Better to fail before than after reading the file for
  # performance reasons.
  if ($Overwrite) {
    $tempname = get-tempname $file.DirectoryName
    set-content $tempname $NULL -confirm:$FALSE
    if (-not $?) { continue }
    Write-Log -Message &quot;Created file &#039;$tempname&#039;.&quot; -Source ${CmdletName}
  }

  # Read all the text from the file into a single string. We have
  # to do it this way to be able to search across line breaks.
  try {
    Write-Log -Message &quot;Reading &#039;$file&#039;.&quot; -Source ${CmdletName}
    $text = [IO.File]::ReadAllText($file.FullName)
    Write-Log -Message &quot;Finished reading &#039;$file&#039;.&quot; -Source ${CmdletName}
  }
  catch [Management.Automation.MethodInvocationException] {
    Write-Log -Message &quot;$ERROR[0]&quot; -Source ${CmdletName}
    continue
  }

  # If -Overwrite not specified, output the result of the Replace
  # method and continue to the next file.
  if (-not $Overwrite) {
    $regex.Replace($text, $Replacement)
    continue
  }

  # Do nothing further if we&#039;re in &#039;what if&#039; mode.
  if ($WHATIFPREFERENCE) { continue }

  try {
    Write-Log -Message &quot;Writing &#039;$tempname&#039;.&quot; -Source ${CmdletName}
    [IO.File]::WriteAllText(&quot;$tempname&quot;, $regex.Replace($text,
      $Replacement), [Text.Encoding]::$Encoding)
    Write-Log -Message &quot;Finished writing &#039;$tempname&#039;.&quot; -Source ${CmdletName}
	Write-Log -Message &quot;Copying &#039;$tempname&#039; to &#039;$file&#039;.&quot; -Source ${CmdletName}
    copy-item $tempname $file -force:$Force -erroraction Continue
    if ($?) {
      Write-Log -Message &quot;Finished copying &#039;$tempname&#039; to &#039;$file&#039;.&quot; -Source ${CmdletName}
    }
    remove-item $tempname
    if ($?) {
      Write-Log -Message &quot;Removed file &#039;$tempname&#039;.&quot; -Source ${CmdletName}
    }
  }
  catch [Management.Automation.MethodInvocationException] {
    Write-Log -Message &quot;$ERROR[0]&quot; -Source ${CmdletName}
  }
} # foreach $file

} # foreach $item
} # process

end { }
}`