I have a string which is like this:
JavaScript
x
2
1
'Hellornand World 15.6n3'.
2
or it can be
JavaScript
1
2
1
'Hellornand World 15.6nNA'.
2
and I want result which should split it like this:
JavaScript
1
3
1
'Hellornand World 15.6'
2
'3'.
3
The code which I have written:
JavaScript
1
2
1
var lines = string.split('n');
2
which is producing result like this:
JavaScript
1
4
1
'Hellor'
2
'and World 15.6'
3
'3'.
4
What changes should I make in split() function to get the desired result?
Advertisement
Answer
You can replace rn
with something else, then split
by n
and put back the replaced rn
:
JavaScript
1
2
1
'Hellornand World 15.6n3'.replaceAll('rn', '&newline').split('n').map(item => item.replaceAll('&newline', '\r\n'))
2