Advertisement
Guest User

Untitled

a guest
May 1st, 2013
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ---- transformation
  2. <?xml version="1.0"?>
  3. <connectionStrings xdt:Transform="Replace" xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  4. <a>aaa</a>
  5. <b>bbb</b>
  6. <c>ccc</c>
  7. </connectionStrings>
  8.  
  9.  
  10. ---- source
  11. <?xml version="1.0" encoding="ISO-8859-1"?>
  12. <connectionStrings>
  13. <x></x>
  14. <x></x>
  15. <x></x>
  16. <x></x>
  17. <x></x>
  18. </connectionStrings>
  19.  
  20. ---- result
  21. <?xml version="1.0" encoding="ISO-8859-1"?>
  22. <connectionStrings><a>aaa</a><b>bbb</b><c>ccc</c></connectionStrings>
  23.  
  24. ---- command line
  25. ctt pw verbose s:src.txt t:transform.txt d:dst.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement