Regex sau đây thêm dấu gạch dưới trước mỗi chữ cái viết hoa:
regexp_replace(name, '([A-Z])','_\1', 'g'))
Vì điều đó dẫn đến dấu gạch dưới ở đầu, điều này cần được xóa bằng cách sử dụng trim()
trim(both '_' from lower(regexp_replace(name, '([A-Z])','_\1', 'g')))
Truy vấn sau:
with names (name) as (
values ('StackOverflow'),
('Foo'),
('FooBar'),
('foobar'),
('StackOverflowCom')
)
select name, trim(both '_' from lower(regexp_replace(name, '([A-Z])','_\1', 'g'))) as new_name
from names;
lợi nhuận:
name | new_name
-----------------+-------------------
StackOverflow | stack_overflow
Foo | foo
FooBar | foo_bar
foobar | foobar
StackOverflowCom | stack_overflow_com