DEV Community

Cover image for Converting snake_case to camelCase with vscode
Alan Schio
Alan Schio

Posted on

3 1

Converting snake_case to camelCase with vscode

The screenshot of the finder tool from VSCode

  • Open the find/replace and click on the .*
  • In the first input use _([a-zA-Z])
  • In the second use \U$1

The screenshot of the finder tool from VSCode with the inputs filled

Now just convert everything and be happy converting SQL/JSON to object variables/params or anything else.

Gif of the replace working on

Top comments (1)

Collapse
 
himanshu_code profile image
Himanshu Sorathiya

Wow, amazing

nextjs tutorial video

Youtube Tutorial Series 📺

So you built a Next.js app, but you need a clear view of the entire operation flow to be able to identify performance bottlenecks before you launch. But how do you get started? Get the essentials on tracing for Next.js from @nikolovlazar in this video series 👀

Watch the Youtube series

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay