I'm trying to figure out how to make custom pattern to use with preg_match / preg_match_all.
I need to find [A-Z]{3}[a-z]{1}[A-Z]{3}
, that would be for an example AREfGER.
3 uppercase, 1 lowercase and 3 uppercase.
anyone know how to make a pattern for this?