Skip to content

Instantly share code, notes, and snippets.

@luislobo14rap
Last active March 10, 2022 19:03
Show Gist options
  • Save luislobo14rap/51e2877752669c41642e286371d0a4c3 to your computer and use it in GitHub Desktop.
Save luislobo14rap/51e2877752669c41642e286371d0a4c3 to your computer and use it in GitHub Desktop.
regex negative set:
regex: [^;]
input: ABC;DEF
output: ABCDEF
('ABC;DEF').match(/[^;]+/g)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment