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

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

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