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