acceptUExtensionKey method
Advances and returns true if current subtag is a valid U Extension key.
Implementation
bool acceptUExtensionKey() {
if (atEnd()) return false;
if (!_uExtensionKeyRegExp.hasMatch(_current)) return false;
advance();
return true;
}