Could someone please help me with this scenario,
[Some text]
[Some text] Device ID: XYZ123 [Some text]
[Some tex]
I want to extract XYZ123 from the above sample. Appreciate your help.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use:
(get ID via catch group #0)
Assuming your regex engine supports lookbehinds, otherwise use:
(get ID via catch group #1)
Note: I herein assume that the
[and]are not actually found in your source text, are they?