regex - Case convert in multiples html files -
regex - Case convert in multiples html files -
i want find , convert lower case content of firth tag p in multiples html files. possible using regular expressions in sublime text? how can create it? thanks!
you can seek \l
in sublime text convert letters lower cases:
find what: (<p.*?>)((.|\n)*?)(</p>)
replace with: \1\l\2\4
html regex find
Comments
Post a Comment