I have to write a regular expression to match child price i.e "18.99", since there are multiple span class with same class name i.e "currency & price-value", I wanted to write regex from CHILD, again here 4-11 is dynamic data, it can change.
<p class="price">CHILD 4-11yrs<br />
<span class="currency">£</span>
<span class="price-value">18.99</span></p>
Wanted a regex which identifies from CHILD to fetch the price. Can anyone help me with this. Thanks in advance.
[^<]*(?:<(?!/p>)[^<]*)*([^<]+)`](https://regex101.com/r/zH6vT2/1)?
– Wiktor Stribiżew Sep 06 '16 at 09:32