My program takes a string input from a user. If the input string matches the regular expression then it should be inserted into the arrayList.
I wrote that following. But, it does not work:
if( element.matches("[a-zA-Z]"));
{
set.add(element);
}