Reputation: 5589
any ideas how to modify this regex:
([A-Z]{3}[0-9][0-9A-Z-\/]*)
so it matches from at least characters {3} (3 and more) not just {3} ?
cheers,
/Marcin
Upvotes: 2
Views: 4868
Reputation: 724552
All you need is a comma:
([A-Z]{3,}[0-9][0-9A-Z-\/]*)
Upvotes: 8