validates :username, format: { with: /\A[a-zA-Z0-9]*\z/, message: "no special characters, only letters and numbers" } # the regex allows the following range of symbols: # first a-z, then A-Z and finally 0-9