To convert a text which contains number, for exampe: convert WeTest1ThingNow to snake_case
heck -> we_test1_thing_now // same with paste!
convert_case we_test_1_thing_now // not same
Honestly, I prefer to use convert_case and insert underline around the numbers, otherwise numbers will concat the left word (so strange).
To convert a text which contains number, for exampe: convert
WeTest1ThingNowto snake_caseheck ->
we_test1_thing_now// same withpaste!convert_case
we_test_1_thing_now// not sameHonestly, I prefer to use convert_case and insert underline around the numbers, otherwise numbers will concat the left word (so strange).