Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #Before
  2. <Information>
  3. <Name>Lakshman</Name>
  4. <Age>23</Age>
  5. <Country>India</Country>
  6. </Information>
  7.  
  8. #Code
  9. (Get-Content test.xml).replace('<', '<ns33:') | Set-Content test.xml
  10. (Get-Content test.xml).replace('<ns33:/', '</ns33:') | Set-Content test.xml
  11. #After
  12. <ns33:Information>
  13. <ns33:Name>Lakshman</ns33:Name>
  14. <ns33:Age>23</ns33:Age>
  15. <ns33:Country>India</ns33:Country>
  16. </ns33:Information>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement