Regex to retrieve token from page source -
what regex retrieve value of "token"
attribute following json fragment?
259,"possible_flags":["recommending","looking-for"],"id":297,"organisations":[],"showwarning":false,"token":"bf311e7a1a4e49846c0fb836934e7685610829d0","intention":"neighbourhood-nearby"...
i want match bf311e7a1a4e49846c0fb836934e7685610829d0
.
this code give full text including "token":"___"
("token":"[a-z0-9]*")
this give token:
"token":("[a-z0-9]*")
Comments
Post a Comment