I just need to find and replace the following word set in VsCode
t("US.TL.PACKAGES:installmentDetail.discount")
I was tried a lot by following
(?:US\.TL\.PACKAGES:)([a-z])([A-Z])
but when I used
([a-z])([A-Z])
this captures all upper in the string.
I need to group by each new word.
installment Detail discount
To put underscore i'm using
\1_\2 in Replace
Final output
US.TL.PACKAGES:INSTALLMENT_DETAILS.DISCOUNT


