Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2024 08:59 AM
I need the input to begin with 'IT' followed by 25 characters.
When I tested IT60X0542811101000000123456 for regex ^IT\[0-9A-Z]{25}$, no matches were detected.
What might be the reason?
Solved! Go to Solution.
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2024 10:32 PM
Hi @tsoct
Can you please try with the below regex :
^IT[A-Z0-9]{25}$
Thanks and Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.
10 REPLIES 10
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-09-2024 10:32 PM
Hi @tsoct
Can you please try with the below regex :
^IT[A-Z0-9]{25}$
Thanks and Regards
Amit Verma
Please mark this response as correct and helpful if it assisted you with your question.