Could you tell me how to write such a regular expression? it matches all <p> <br> </p>.

could you tell me how to write such a regular expression? it matches all


Jun.27,2022

/^

.*<br>.*<\/p>$/

this expression matches

<br>

safda<br>asdfa

, etc., starting with

, ending with

, with
appearing in the middle, all matching

.
/

<br>

/ig
Menu