Forum Discussion

vantaku01's avatar
vantaku01
Occasional Contributor
2 years ago
Solved

entering random keys

Hi everyone,   I am writing code in delphi, I would like to pick some random string with a length of 6 from the following string( 'ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyz'). ...
  • Kitt's avatar
    2 years ago

    I am using javascript, but the logic is the same - you could try to get the length of the string, then obtain a random starting point between 1 and the length of your string (*minus 6, so it won't grab less than 6 characters) and use it in the aqString.SubString method [referenced here]:

     

     

     

    function getRandomString() {
      var string = "ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890abcdefghijklmnopqrstuvwxyz";
      var strCount = aqString.GetLength(string); // length of string
      var strMax = strCount - 6; // strCount - 6 >> so it doesn't grab less than 6 characters
      var randoStart = Math.round(Math.random()*(strMax - 1) + 1); // random # between 1 and strMax
      var randoStr = aqString.SubString(string, randoStart, 6)
      Log.Message(randoStr);
      return randoStr;
    }
    
    function test() {
      getRandomString(); // 1 
      getRandomString(); // 2
      getRandomString(); // 3
    }

     

     

     Output: