Skip to content

Instantly share code, notes, and snippets.

@hisui
Created December 30, 2013 18:23
Show Gist options
  • Select an option

  • Save hisui/8185749 to your computer and use it in GitHub Desktop.

Select an option

Save hisui/8185749 to your computer and use it in GitHub Desktop.
Splits a camel-cased name to word segments.
"ThisIsAUniqueID".scan(/(?:[A-Z][^\WA-Z]+|[A-Z]+(?![^\WA-Z]))/)
# ==> ["This", "Is", "A", "Unique", "ID"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment