Hello World

Be Happy!

Regular expression : Changing snake case to camel case


I want change snake case to camel case

mac_address -> macAddress
phone_number -> phoneNumber

1. find _a, _n
_([a-z])

2. replace to A, N
\U$1

#regular_expression (4)
List