- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Hi Ram,
I think you want the carriage return character.
Try;
var lines = value.split("\r");
which is the same as;
var lines = value.split("\x0D");
Bruce
Hi Ram,
I think you want the carriage return character.
Try;
var lines = value.split("\r");
which is the same as;
var lines = value.split("\x0D");
Bruce