I am tasked to use regex to verify a pattern in a string instead of using substrings due to accuracy reasons.
The string is as follows:
I need to verify that the string is in the format as [GMT-CASE_<6 digits>].
A sample string:
[GMT-CASE_000001] Query on...
May I know how can this be done?
Thank you.
\[GMT-CASE_[0-9]{6}]