Hi,
When I want to split the text by line, I'm using:
myText.split(/\n|\r/);
I'm using Windows and to split the text by empty line I'm using:
myText.split('\n\n');
and it's works fine on Windows.
Can anyone tell me will it work on a Mac?
Thanks
Hi,
When I want to split the text by line, I'm using:
myText.split(/\n|\r/);
I'm using Windows and to split the text by empty line I'm using:
myText.split('\n\n');
and it's works fine on Windows.
Can anyone tell me will it work on a Mac?
Thanks