To replace a paragraph <p> of less than x characters (30 in the example below) with a title (<h3> in the same example), you can use this regex code
search: <p>(.{0,29})</p>
replace: <h3>\1</h3>
a thoughtful use of digital
To replace a paragraph <p> of less than x characters (30 in the example below) with a title (<h3> in the same example), you can use this regex code
search: <p>(.{0,29})</p>
replace: <h3>\1</h3>