正则表达式无法抓取字符串的后16位 #2177
-
I want to extract the last 16 bits of the string, but the regularization of nucleis not supported For example: token=86726ecd5fb476313cb4562183c0da6b by python, re.search(r"([a-z0-9]{16}$)",token).group() = 3cb4562183c0da6b But in nuclei, it is not supported $ So, is there any other way to extract the last 16 bits of a string |
Beta Was this translation helpful? Give feedback.
Answered by
forgedhallpass
Jun 21, 2022
Replies: 1 comment
-
You should be able to achieve this using the See: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
forgedhallpass
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should be able to achieve this using the
group
attribute.See:
group:
)