我正在制作一个为其他人替换字母的功能,问题是它不能按我的意愿工作。
来源
function encode(texto:string): string;
var
cadena: string;
i: integer;
const
letras: array [1 .. 26] of string = ('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h',
'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
'x', 'y', 'z');
const
in_letras: array [1 .. 26] of string =
('z', 'y', 'x', 'w', 'v', 'u', 't', 's', 'r', 'q', 'p', 'o', 'n', 'm', 'l',
'k', 'j', 'i', 'h', 'g', 'f', 'e', 'd', 'c', 'b', 'a');
begin
for i := Low(letras) to High(letras) do
begin
texto := StringReplace(texto, letras[i], in_letras[i],[rfReplaceAll]);
end;
Result := texto;
end;
Edit2.Text := encode(Edit1.Text);
在Edit1和我的Edig1中使用函数encode()返回,这应该不会发生,因为我在替换函数时做错了