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.
|
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. |
|||
|
|
|
Use regex
example at http://www.jsfiddle.net/8yEBn/ |
|||
|
|
|
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:
Untested, but should work. |
|||
|
|