Split on type string javascript

Code examples

0
0

const splitText = (string) => {
  const newText = string
    .split(/((?:\w+ ){1})/g)
    .filter(Boolean)
    .join("\n");
  return newText
};
console.log(splitText("Hello, world"));
//Hello,
//world

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................