How to write a alphanumeric code

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Iamtrey3
    New Member
    • Mar 2014
    • 2

    How to write a alphanumeric code

    I want an example of how to write an alphanumeric code
  • Iamtrey3
    New Member
    • Mar 2014
    • 2

    #2
    Learning something new

    This is a very good site it help with all kinds of IT stuff

    Comment

    • 2147483648
      New Member
      • Feb 2014
      • 11

      #3
      =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

      • Nepomuk
        Recognized Expert Specialist
        • Aug 2007
        • 3111

        #4
        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

        • 2147483648
          New Member
          • Feb 2014
          • 11

          #5
          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

          • Nepomuk
            Recognized Expert Specialist
            • Aug 2007
            • 3111

            #6
            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

            • 2147483648
              New Member
              • Feb 2014
              • 11

              #7
              Thank you very much for making me to realize quickly Nepomuk.
              I will appreciate and accept ur response without hesitation.

              Comment

              • meditation
                New Member
                • Jun 2014
                • 13

                #8
                Your question is not clear, [A-Z|a-z|0-9]+ is considered as alphanumeric word.

                Comment

                Working...