In javascript, If i have a text block like so
Line 1
Line 2
Line 3
What would i need to do to lets say delete the first line and turn it into:
Line 2
Line 3
|
In javascript, If i have a text block like so
What would i need to do to lets say delete the first line and turn it into:
|
|||
|
|
|
The cleanest way of doing this is to use the split and join functions, which will let you manipulate the text block as an array of lines, like so:
|
|||||
|
|
In a nutshell: Look for the first line return (\n) and use the JavaScript Here is a RegEx that does it (surprisingly tricky, at least for me...)
|
|||||||||
|
|
This removes the first line from a multi-line string variable - tested in Chrome version 23 on a variable which was read from file (HTML5) with line endings/breaks that showed as CRLF (carriage return + line feed) in Notepad++:
Hope that helps! |
||||
|
|