Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string like this:

A sampletext
b sampletext3
c exampletext    
A sampletext587
b sampletext5
b sampletextasdf
d sampletext4
b sometext
c sampletextrandom

How do I, in JS, convert all the text on the lines starting with b to upper case?

Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted

With regex

"b sampletext3".replace(/^b/gm,function(x){return x.toUpperCase()})
B sampletext3

And assigning it to String Object

String.prototype.toTitleCaseB=function(){
    return this.replace(/^b/gm,function(x){return x.toUpperCase()})
}

Would later use like

"b sampletext3".toTitleCaseB()
B sampletext3
share|improve this answer
I think Mark is looking for /^b.*$/mg. Anyway, you beat me by a lot... – Kobi Mar 3 '10 at 11:29
yep, got the idea. Thanks a lot! – Mark Mar 3 '10 at 11:31
yeah, I overlooked some part of the question, fixed. – YOU Mar 3 '10 at 11:32
  1. split the string on \n
  2. loop over the resulting array
  3. use substring to extract the first letter and test it
  4. optionally set the array item to itself.toUpperCase()
  5. join the array
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.