Skip to content

Instantly share code, notes, and snippets.

@joemaller
Created September 23, 2022 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemaller/c9d28aa38a8fbe3f73885a36c889d888 to your computer and use it in GitHub Desktop.
Save joemaller/c9d28aa38a8fbe3f73885a36c889d888 to your computer and use it in GitHub Desktop.
Case Conversion examples

Input: my name is bond

Name Sample
πŸͺ Camel case myNameIsBond
πŸ‘¨β€πŸ« Pascal case MyNameIsBond
🐍 Snake case my_name_is_bond
πŸ‘©β€πŸ« Ada case My_Name_Is_Bond
Ⓜ️ Macro case MY_NAME_IS_BOND
πŸ₯™ Kebab case my-name-is-bond
πŸš‚ Train case My-Name-Is-Bond
🏦 Cobol case MY-NAME-IS-BOND
πŸ”‘ Lower case my name is bond
πŸ”  Upper case MY NAME IS BOND
πŸ“° Title case My Name Is Bond
✍️ Sentence case My name is bond
βš™οΈ Dot notation my.name.is.bond

From jawira/case-converter

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment