Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
866 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can pass the replace method a replacer function. The first argument for which is the whole match, the second will be $1. Thus:

mystring.replace(/<([w]+)[^>]*>.*?</1>/, function(a,x){ 
   return a.replace(x,x.toUpperCase()); 
})

although this form saves the extra operation by making an additional capture (should be faster but haven't checked):

mystring.replace(/<([w]+)([^>]*>.*?</1>)/, function(a,x,y){ 
   return ('<'+x.toUpperCase()+y); 
})

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...