Skip to content

Instantly share code, notes, and snippets.

@VladSez
Last active March 4, 2024 00:04
Show Gist options
  • Save VladSez/ebeb9a206f605bfd45e20d5bc99d10ce to your computer and use it in GitHub Desktop.
Save VladSez/ebeb9a206f605bfd45e20d5bc99d10ce to your computer and use it in GitHub Desktop.
// split by ": " or "; "
const splitted = "Game 1: 3 blue, 4 red; 1 red, 2 green, 6 blue; 2 green".split(/: |; /g);
// res: ['Game 1', '3 blue, 4 red', '1 red, 2 green, 6 blue', '2 green']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment