I am using a regex to program an input validator for a text box where I only want alphabetical characters. I was wondering if [A-z]
and [a-zA-Z]
were equivalent or if there were differences performance wise.
I keep reading [a-zA-Z]
on my searches and no mention of [A-z]
.
I am using java's String.matches(regex)
.