I\'ve inherited some xml files which has all tags in uppercase. I would like to convert them to lowercase using either a regular expression or via XSLT. It would be handy to be
try to this regex:
<(\/?[a-zA-Z]*)\b.*?>
online tester: http://regex101.com/#PCRE
Enjoy your code