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

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

ubuntu - Bash Script to Check That Files Are Being Created -