How to convert string to camel and snake case in Elixir

Converting into snake case
> Macro.underscore("ThisWillBeSnakeCase")
"this_will_be_snake_case"
Converting into camel case
> Macro.camelize("this_will_be_camel_case")
"ThisWillBeCamelCase"
Work with a team that keeps learning and building better software every day.
Related posts
Dive deeper into this topic with these related posts
No items found.
You might also like
Discover more content from this category
In some cases, like for testing purposes, you might want to use an npm package stored on a local machine. Here is how you can do that with one simple command.
Did you ever create a commit that you wish never happened? Let's be honest - we all did. There is an easy way to revert it in Git.
Sooner or later you'll have to change the null constraint in one of your DB relations. How to do it easily in Ecto?
