I'm trying to format the look of a string from a one line output, like:
XML Code:
<LicenseParameters><RSAKeyValue><Modulus></Modulus><Exponent>AQAB</Exponent></RSAKeyValue><DesignSignature></DesignSignature><RuntimeSignature></RuntimeSignature><KeyStrength>7</KeyStrength></LicenseParameters>
When it should like look this:
XML Code:
<LicenseParameters> <RSAKeyValue> <Modulus></Modulus> <Exponent>AQAB</Exponent> </RSAKeyValue> <DesignSignature></DesignSignature> <RuntimeSignature></RuntimeSignature> <KeyStrength>7</KeyStrength> </LicenseParameters>
Just to note, The data inside the nodes is the only thing that will change. The names and order will always be the same.




Reply With Quote