I am looking to run the command
foreach-object {$_ -replace
However the string I am attempting to work with could be described as the follo
Did you try doubling up you quotation marks as an escape character for quotes? i.e.
$a = "This String ""Has"" Quotes" $a = $a.replace("This String ""Has"" Quotes","this string ""won't have"" quotes. ")