Converting snake_case to camelCase with vscode
Alan Schio

Alan Schio @schirrel

About: I wrote here most like a diary to don't forget solution for problems i already had. I'm a lover of pure web. I'm specialized in Vanilla JS, CSS and Semantic HTML andCertified VueJS developer.

Location:
Brazil
Joined:
May 23, 2020

Converting snake_case to camelCase with vscode

Publish Date: Jul 17 '24
4 1

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

Comments 1 total

Add comment