@jswork/next-splitlines
v1.0.1
Published
Split string by ` ` or ` ` or ` ` for next.
Downloads
26
Readme
next-splitlines
Split string by
\r\n
or\n
or\r
for next.
installation
npm install -S @jswork/next-splitlines
usage
import '@jswork/next-splitlines';
const str = `1
00:00:03,776 --> 00:00:09,152
Technology trends may push Silicon Valley back to the future.
2
00:00:09,152 --> 00:00:19,009
Carver Mead, a pioneer in integrated circuits and a professor of computer science at the California Institute of Technology,
3
00:00:19,009 --> 00:00:33,473
notes there are now work-stations that enable engineers to design, test and produce chips right on their desks, much the way an editor creates a newsletter on a Macintosh.
`;
const liens = nx.splitlines(str);
/*
[
'1',
'00:00:03,776 --> 00:00:09,152',
'Technology trends may push Silicon Valley back to the future.',
'',
'2',
'00:00:09,152 --> 00:00:19,009',
'Carver Mead, a pioneer in integrated circuits and a professor of computer science at the California Institute of Technology,',
'',
'3',
'00:00:19,009 --> 00:00:33,473',
'notes there are now work-stations that enable engineers to design, test and produce chips right on their desks, much the way an editor creates a newsletter on a Macintosh.',
'',
''
];
*/
resources
- https://stackoverflow.com/questions/21895233/how-in-node-to-split-string-by-newline-n
license
Code released under the MIT license.