For example, if I want to capture the content in the following tags, it is just "Catch me"
<p class="c-info-box">抓我</p>
Try the following regular expression
<p class=\"c-info-box\">(.*)</p>
is not feasible. Is there any more suitable expression?
大家讲道理2017-05-17 10:02:17
This can be done using css class selection + DOM operation. If you use regular expressions, you will take the long way around