This is what i have already.
^[abceghj-prstw-z][a-np-z]$
I am trying to form regex pattern with these requirements: First position can be any letter but d,f,i,q,u,v. Second position can be any letter but o. The first and second position can't be BG, GB, NK, KN, TN, NT, ZZ.
So for example string "ap" = true.
ao = false (because second position is o).
gb = false (because it cant be gb)
I am pretty new with regular expressions so any help would be great. Thanks.