at first i wanted this field to only contain alphabetical characters.
but i realized that someone may have a middle name and use it in intials for example
first name : bob
last name : d. jones
i have this regex for the first and last name fields:
if ($chart_name =~ /^([-\@\w.]+)$/) {
#good data
}
else { die; }