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
Sometimes you may notice that your website displays an unintended horizontal scrollbar. You may be wondering what is the cause.
By default in the test env, Phoenix doesn't show Logger.debug/Logger.info outputs in the console.
Did you know that it's possible to set default value in Javascript object destructuring?
