Hello all,
suppose I have a string which i have retrieved using the regex like the following
string_feature = '<div class="BVRRLabel BVRRRatingNormalLabel">Customer Rating</div><div class="BVRRLabel BVRRRatingNormalLabel">Value for Price</div>
<div class="BVRRLabel BVRRRatingNormalLabel">Picture Quality</div>
<div class="BVRRLabel BVRRRatingNormalLabel">Ease of Use</div>
<div class="BVRRLabel BVRRRatingNormalLabel">Features</div>'
What will be the regular expression to get the following type of list
list_feature = ['Customer Rating','Value for Price','Picture Quality','Ease of Use','Features']