I'm trying to format the look of a string from a one line output, like:

XML Code:
  1. <LicenseParameters><RSAKeyValue><Modulus></Modulus><Exponent>AQAB</Exponent></RSAKeyValue><DesignSignature></DesignSignature><RuntimeSignature></RuntimeSignature><KeyStrength>7</KeyStrength></LicenseParameters>

When it should like look this:
XML Code:
  1. <LicenseParameters>
  2.     <RSAKeyValue>
  3.         <Modulus></Modulus>
  4.         <Exponent>AQAB</Exponent>
  5.     </RSAKeyValue>
  6.     <DesignSignature></DesignSignature>
  7.     <RuntimeSignature></RuntimeSignature>
  8.     <KeyStrength>7</KeyStrength>
  9. </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.