Skip to content

Instantly share code, notes, and snippets.

@DesignFront
Last active March 4, 2021 10:18
Show Gist options
  • Save DesignFront/2ecb2988fa1a38734b516b7b2f92893c to your computer and use it in GitHub Desktop.
Save DesignFront/2ecb2988fa1a38734b516b7b2f92893c to your computer and use it in GitHub Desktop.
Split string by capital/numbers
value.replace(/(?!^)([A-Z]|\d+)/g, " $1");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment