function _IsMetaChar(AChar: REChar): boolean; {$IFDEF InlineFuncs}inline;{$ENDIF}
begin
case AChar of
'd', 'D',
's', 'S',
'w', 'W',
'v', 'V',
'h', 'H':
Result := True
else
Result := False;
end;
end;
can optimize it via set ['d','D','s','S','w','W','v','V','h','H'] after casting REChar to char.
can optimize it via set ['d','D','s','S','w','W','v','V','h','H'] after casting REChar to char.