Thank you, , lets say i only want to include 2345 and exclude the res of the number , so 2-5 and letters a combination of lowercase and uppercase that i choose. fo example ABSD pqrs and number 2-5.
is that doable?
thank you
what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689
letters > ABDEF uppercase ghtwy lowercase
thanks for your help, don know it this is doable with regex, i couldn't figure it out.
I'd help you out but I have no idea what you mean.
Try to understand what I wrote, and apply what you want :
regex : ^1[a-z]{4}.*$
example match : 1lmnoxxxxxxxxxxxxxxxxxx
regex : ^1[A-Z]{2}.*$
example match : 1IJxxxxxxxxxxxxxxxxxxxx
regex : ^1[A-Z0-9]{4}.*Z$
example match : 1A2B1xxxxxxxxxxxxxxxxxxxxZ
etc...
thanks
what i am trying to achive here is to make a L33T phrase which is possible with certin numbers and words. NUmber only 689
letters > ABDEF uppercase ghtwy lowercase
Can you give an example of the prefix you want? Would it be for example 1689ABDEFghtwy or the same characters in any different order?
ok here is prefix >L33T
now
make and address using these and only these . A, M, N, H, Y, G, T, R, c, b, h, j, k, m, 4, 5, 6
it can not use a lowercase, or B or 2, iwant it to make address based on my input
thank you