基本上,我有一个输入,我想验证用户输入是否使用了qwerty键盘布局中的3个或更多个连续字母。我的意思是Q-W-E或Y-U-I-O-P。首先,我将用户输入存储在字符串变量中,并使用ansiLowerCase函数将输入转换为小写。我把qwerty布局声明为常量字符串并使用strscan函数但无济于事。非常感谢任何帮助,谢谢。
答案 0 :(得分:0)
尝试这样的事情:
function HasThreeConsecutiveLetters(const Str: string): Boolean;
const
QwertyLetters: array[0..2] of string = (
'QWERTYUIOP',
'ASDFGHJKL',
'ZXCVBNM'
);
var
I, J, K: Integer;
S: String;
begin
Result := False;
S := AnsiUpperCase(Str);
for I := 1 to Length(S) do
begin
for J := Low(QwertyLetters) to High(QwertyLetters) do
begin
K := Pos(S[I], QwertyLetters[J]);
if (K <> 0) and
((K+2) <= Length(QwertyLetters[J])) and
(Copy(S, I, 3) = Copy(QwertyLetters[J], K, 3)) then
begin
Result := True;
Exit;
end;
end;
end;
end;
然后你可以这样做:
var
input: string;
begin
input := ...;
if HasThreeConsecutiveLetters(input) then
...
else
...
end;