I'm trying to extract a string from a JSON response using regex in Python, but with no success.
{"ao":["jskl|_xx2|020|b503414ff19853ce357413fafe7c612a0b6b0ba3f592f9b551bdc8d0dbdbbd34:J26U1IfsvZ0kiJwLm3xoVhZNN/Xr+Z2gRkJA===|true|900"]}
I'm trying to get
b503414ff19853ce357413fafe7c612a0b6b0ba3f592f9b551bdc8d0dbdbbd34:J26U1IfsvZ0kiJwLm3xoVhZNN/Xr+Z2gRkJA===
from the string. However, the |
in the string won't allow me to use the methods I have seen on Stack Overflow because it keeps missing the |
. I would appreciate any help.