I want an example of how to write an alphanumeric code
How to write a alphanumeric code
Collapse
X
-
=CHAR(CHOOSE(RA NDBETWEEN(1,2), RANDBETWEEN(48, 57),RANDBETWEEN (65,90)))
to get a random alphanumeric character... or, 5 of those concatenated to get a 5 character one: =CHAR(CHOOSE(RA NDBETWEEN(1,2), RANDBETWEEN(48, 57),RANDBETWEEN (65,90)))&CHAR( CHOOSE(RANDBETW EEN(1,2),RANDBE TWEEN(48,57),RA NDBETWEEN(65,90 )))&CHAR(CHOOSE (RANDBETWEEN(1, 2),RANDBETWEEN( 48,57),RANDBETW EEN(65,90)))&CH AR(CHOOSE(RANDB ETWEEN(1,2),RAN DBETWEEN(48,57) ,RANDBETWEEN(65 ,90)))&CHAR(CHO OSE(RANDBETWEEN (1,2),RANDBETWE EN(48,57),RANDB ETWEEN(65,90)))
Just press F9 to get a new value, or use a looping macro for your "... at least one character in the result would be a letter" restriction.
note: RANDBETWEEN requires the analysis toolpak.Comment
-
Generally speaking, alphanumeric code is code containing latin letters (A-Z and a-z) as well as arabic digits (0 through 9). Or do you mean alphanumeric shellcode?Comment
-
Hi Nepomuk,
I like the way u reply,i learned frm u that first we need knw wht exactly they looking for,definition its nice.
Thanks for ur answer.Comment
-
Hi 2147483648!
Yes, it's always good to know what exactly the question is. ;-) Your solution seems to create random alphanumeric code, though I'm not sure which language that is supposed to be. Maybe VBA?
But back to the question: Iamtrey3, if the replies so far answer the question, great. If not, please specify what exactly you want to know.Comment
-
Thank you very much for making me to realize quickly Nepomuk.
I will appreciate and accept ur response without hesitation.Comment
-
Comment