RegEx: Modify text between ' ' to lowercase
-
Hi,
I need some help by finding the right regex for modifiing the text between ’ ’ to lowercase within many html files.
Here is an example of one line I want to modify:
{{ basic.symbol(id~‘_heating_ind’, ‘VENTILATION.heating.Is_on’, ‘’, ‘Sani_floor_heating.svg’, 1, ‘’, ‘orange’) }} GabiShould be modified to :
{{ basic.symbol(id~‘_heating_ind’, ‘ventilation.heating.Is_on’, ‘’, ‘sani_floor_heating.svg’, 1, ‘’, ‘orange’) }} GabiCould somewone help to find the right regex for notepad++?
Thank you!
-
find what: '.*?'
replace with: \L$0
-
@Eko-palypse
THX