Skip to content

Instantly share code, notes, and snippets.

@palpich
Created July 22, 2022 12:42
Show Gist options
  • Save palpich/78ca9a353c27a0a7050fb1364ebed037 to your computer and use it in GitHub Desktop.
Save palpich/78ca9a353c27a0a7050fb1364ebed037 to your computer and use it in GitHub Desktop.
Find all spaces in str and replace to new line symbol
let str = 'foo bar baz'
str = str.replaceAll(/(\b +\b)/gm, '\n')
// foo
// bar
// baz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment