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

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -