As I am new to regex, can anyone give me the detailed explanation of the following regex:-
ZBC_EXTR[0-9]{0,1}\_STOCK_([A-Z]{0,1}|[0-9]{0,1})
As I am new to regex, can anyone give me the detailed explanation of the following regex:-
ZBC_EXTR[0-9]{0,1}\_STOCK_([A-Z]{0,1}|[0-9]{0,1})
This is regex is looking for a string with various parts to it.
For example the following strings would match the regex expression:
But these strings would NOT match:
A good resource for regex: https://www.regular-expressions.info/