We're using this regular expression to allow text only in input fields:
/^[a-zA-Z-,]+(\s{0,1}[a-zA-Z-, ])*$/gi
Now, there's a problem since we're from Bosnia and we have special characters with aphricates, like:
Č, Ć, Ž, Š, Đ
And their lower case variants, respectively:
č, ć, ž, š, đ
How to add those in the regular expression above?
Note: I am very low on my RegEx knowledge.