I found this snippet on one of the scripting sites.
All credits for it go to the original author.
; simple alias that introduces a technique of $regsubex :)
; $rpass(N,A,Z) returns a random password of length N from a range of characters A to Z
; eg $rpass(10,c,z) gives ccrfxmnted
alias rpass return $regsubex($str(a,$1),/a/g,$r( [ $2, $3 ] ))
And it's working briljantly.
But I would like to add numeric support, so include 0-9.
Does anyone know how that can be done?
Thx in advance!