does someone know how to add Umlauts to a regular expression to validate the format for a text input with rails?
I tried this but it breaks rails completely:
validates :first_name, :presence => true, :allow_blank => false, :format => { :with => /\A[a-z A-ZäöüÄÖÜ]+\z/}
Try this: