当前位置:网站首页>Notepad++ underline and case letter replacement

Notepad++ underline and case letter replacement

2022-07-19 07:26:00 yygyj

notepad++ Tips for easy development
stay java During the development process , I will encounter such problems , Don't talk much , Look at specific examples :

Example 1 :
A table has many fields (100 A! ), The format of database table fields is generally underlined , such as db_user_role、db_ccc_out, And so on .
When we create entity classes, if there is no simple way to turn these whole into a small hump , I think it's very painful for you to change one by one .

Concrete realization :
1. There are the following fields , Here are five examples

db_user_one
db_role_two
db_prod_three
db_ccc_four
db_link_five

2. Turn the above field into a small hump and follow the following steps (([a-z])_([A-Z]) \1\u\2)
 Insert picture description here

 Insert picture description here
 Insert picture description here
 Insert picture description here

 Insert picture description here

原网站

版权声明
本文为[yygyj]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/200/202207170519525662.html