/\D\d{4}$/ #### / (?: # either ^ # start of string | # or \D # a non digit ) \d{4} # exactly four digits $ # end of string /x