How to parse this?
-
li class="dashboard-list-item"> <div class="dashboard-list-item-left"> <h3>My Orders</h3> <p> 5</strong> Orders </p> </div>
How do i parse the number 5?
-
@Rey-Aw
Using LR should be finePARSE "<SOURCE>" LR "" "</strong>" -> VAR "MyCaprute"
but if source data get complicated
PARSE "<SOURCE>" REGEX "([0-9]){0,}(<\\/strong>)" "[1]" -> VAR "MyCaprute"
-
@Br4uN Thanks 2nd worked!