O script do PowerShell continua excluindo & apos; entidade

0

Eu criei um script do PowerShell para editar vários arquivos xml em uma pasta, ele editará apenas o nó "description", mas por alguma razão o resultado final é que a 'entidade se tornou normal 'e o nó "cloneof" é dividido em duas linhas.

Get-ChildItem .\ *.xml -recurse | % {
echo "Editing file" $_.Name
$xml = [xml](Get-Content $_.fullname)
$xml.SelectNodes("//description") | ForEach-Object {
$string = $_.InnerText

if ($string -like "*(*") {
    $string = $string.substring(0, $string.Indexof("(")-1)

    if ($string -like '*,*') 
        {
        $article = $string.Substring($string.LastIndexOf(','))

        if ([string]$article -eq ", The") {
            $string = $article.Substring(2) + " " + $string.Substring(0, $string.LastIndexOf(","))
        }
        elseif ([string]$article -eq ", A") {
            $string = $article.Substring(2) + " " + $string.Substring(0, $string.LastIndexOf(","))
        }
        elseif ([string]$article -eq ", L'") {
            $string = $article.Substring(2) + $string.Substring(0, $string.LastIndexOf(","))
        }
        elseif ([string]$article -like "*-*") {
            $string = $article.Substring(2, $article.IndexOf("-")-2) + $string.Substring(0, $string.LastIndexOf(",")) + $article.substring($article.IndexOf("-")-1)
        }


      else {
            echo "No article renaming needed for:"
            echo $article
            echo $string
           }

        }
    }

$_.'#text' = $string
} 
$xml.save($_.FullName)
}

algumas ideias? teoricamente o restante do arquivo permanecerá intocado, certo?

o XML está cheio de seções como este XML ORIGINAL

<game name="Addams Family, The - Pugsley&apos;s Scavenger Hunt (USA)" index="" image="">
    <description>Addams Family, The - Pugsley&apos;s Scavenger Hunt (USA)</description>
    <cloneof></cloneof>
    <crc>6B8D777D</crc>
    <manufacturer>Ocean</manufacturer>
    <year>1993</year>
    <genre>Platform</genre>
    <rating>Other - NR (Not Rated)</rating>
    <enabled>Yes</enabled>
</game>

XML EDITADO

<game name="Addams Family, The - Pugsley's Scavenger Hunt (USA)" index="" image="">
<description>The Addams Family - Pugsley's Scavenger Hunt</description>
<cloneof>
</cloneof>
<crc>6B8D777D</crc>
<manufacturer>Ocean</manufacturer>
<year>1993</year>
<genre>Platform</genre>
<rating>Other - NR (Not Rated)</rating>
<enabled>Yes</enabled>

Moreno
fonte
Por que um problema &apos;mudou? Um regular 'é bom em XML. Além disso, não o vejo no seu exemplo, nem entendo para que servem os resultados <cloneof>. Parece tudo muito bem para mim ... (Talvez adicionar algum pequeno "antes", "depois" e "esperado" exemplos?)
Arjan
E está <cloneof>sempre vazio no arquivo original quando dividido em duas linhas?
Arjan #
A culpa é minha, o script está funcionando o problema que listei anteriormente são apenas estéticos, pois deixaria intocado o restante do xml. Sim o nó cloneof vazio mas vêm em duas linhas ... é permanecer em uma única linha, se o nó como algum texto dentro Eu vou colocar um exmple no primeiro post a ser muito claro: D
Moreno