using patterns is it possible to cut a string? I want to label just the access token value.
Example:
/api/v1/documents?access_token=ssshhh-ddds--aaasd-ddasdasd
access_token_label: ssshhh-ddds–aaasd-ddasdasd
using patterns is it possible to cut a string? I want to label just the access token value.
Example:
/api/v1/documents?access_token=ssshhh-ddds--aaasd-ddasdasd
access_token_label: ssshhh-ddds–aaasd-ddasdasd
regex
is probably better for this than pattern, something like:
.*\?access_token=(?P<LABEL>.*)
thank you so much @tonyswumac … it’s work properly…
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.