Returns the alphabetic characters of the parameter value.
public function getAlpha(string $key, string $default = '') : string { return preg_replace('/[^[:alpha:]]/', '', $this->getString($key, $default)); }