Question about a PARSE
-
Hello, how can I capture this data ?
<span class='row_title'>Group</span>
<span class='row_data'><font color="#92ceb5">Classic</font></span>I want the "Classic", the font color can change depending on the "Group" and there are many <span class='row_title'> and <span class='row_data'>. Thank you very much.
-
You could try using regex
<span class='row_data'><font color="#(([0-9]|[a-z])([0-9]|[a-z])([0-9]|[a-z])([0-9]|[a-z])([0-9]|[a-z])([0-9]|[a-z]))">(.*?)</font></span>
and capturing the 8th group ( [7] in openbullet output )
-
@Overdue edit: website removing backslashes for some reason, add backslash behind every / in my regex and it should work (looks like V)
-
@Overdue said in Question about a PARSE:
@Overdue edit: website removing backslashes for some reason, add backslash behind every / in my regex and it should work (looks like V)
thank you sir, will try !