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

What's the easist way to select every line that starts with the:

>

For example stackoverflow turns every line that starts with > into a quoted line. I want to do the same thing.

share|improve this question

2 Answers

up vote 1 down vote accepted

Use regex

stringVariable.replace(/(^>.+$)/gm,'<strong>$1</strong>');

example at http://www.jsfiddle.net/8yEBn/

share|improve this answer

inputString.splitlines() will return an array with all the lines in the input string

Then you are able to check wether line starts with > using:

 if ( line.match(/^>/) ) 

Untested, but should work.

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.