掲示板システム
ホーム
アクセス解析
カテゴリ
ログアウト
ブルートフォースアタック用文字列作成 (ID:39079)
名前
ホームページ(ブログ、Twitterなど)のURL (省略可)
本文
少しだけ高速化 function GetString(fChars:string; n,Count: Integer): string; var aLen,p:Integer; begin aLen := Length(fChars); SetLength(Result,n); for p := 1 to n do Result[p]:=fChars[1]; for p := n downto 1 do begin Result[p] := fChars[(Count mod aLen) +1]; Count := Count div aLen; if Count=0 then Exit; //無くても可 end; end;
←解決時は質問者本人がここをチェックしてください。
更新する
戻る
掲示板システム
Copyright 2021 Takeshi Okamoto All Rights Reserved.