Sehr gut und gerne 🤝 . Habe meine Vorschlag oben auch noch ein klein wenig angepasst.
AutoIt
Func _RandomString($nQuantity)
Local Const $aSignPool = StringSplit("0123456789abcdefghijklmnopqrstuvwxyz", "", 2)
Local Const $iCount = UBound($aSignPool) -1
Local $sReturn
For $i = 1 To $nQuantity
$sReturn &= $aSignPool[Random(0, $iCount, 1)]
Next
Return $sReturn
EndFunc ;==>_RandomString
So oder so, Hauptsache man bekommt damit dann genau die Anzahl an Random Characters zurück, die man erwartet 👍 .
Bis die Tage mal, ich bin raus für heut'.
Viele Grüße
Sven