Languages
[Edit]
EN

Regex - convert from camel case notation to underscore

14 points
Created by:
Root-ssh
175400

To convert from camel case to underscore notation we can use below regex.

Regex:
([a-z])([A-Z0-9])

Replace with:
\L$1_$2

// BEFORE:
dbColumnName

// AFTER:
db_column_name

Tested with notepad++.

Notes:

  • ensure to have 'Match case' radio button checked,
  • ensure to have 'Regular expression' radio button checked.

Motivation:
     Why I like to use it?
     Because I don't need to convert SQL field names manually and it saves my time.

Screenshots

Screenshot before:

Regex to convert from camel case to underscore notation - before replace
Regex to convert from camel case to underscore notation - before replace

Screenshot after:

Regex to convert from camel case to underscore notation - after replace
Regex to convert from camel case to underscore notation - after replace

More complex example

// BEFORE:
pictureId
pictureHashId
pictureFilename
userId
pictureUploadTime

// AFTER:
picture_id
picture_hash_id
picture_filename
user_id
picture_upload_time

See also

  1. Regex - convert from underscore to camel case notation

Alternative titles

  1. regex replace camel case letter with lowercase letter (big letter to small letter)
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

Regex

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join