Is there an easy way to change the case of a matched string with javascript?
Example
String : <li>something</li>
Regex : /<([\w]+)[^>]*>.*?<\/\1>/
And what I'd like to do is replace the match $1 to all capital letters (inside the replace if possible). I'm not entirely sure when $1 is a valid match and not a string -- '$1'.toUpperCase doesn't work.
So how would I go about returning <LI>something</li>
? The method, not the regex.