<<  >> (p.181)
    Author Topic: Vanitygen: Vanity bitcoin address generator/miner [v0.22]  (Read 1155143 times)
    Sud0
    Newbie
    *
    Offline

    Activity: 5
    Merit: 0


    View Profile
    November 09, 2018, 01:12:19 AM
     #3601


    use only capital letters, exclude numbers, exclude xyz include 234
    only use letters ABCDEFGJHK and number 23456 etc...

    thank you

    I think vanitygen works with regex.

    vanitygen -v -r ^1[A-Z0-9]{3}.*$

    Quick explanation :  ^1[A-Z0-9]{3}.*$

    ^: Start of regex line
    1 : All btc addresses start with 1
    [A-Z0-9] : only capital letters, and numbers
    {3} : 3 times
    . : any character
    * : any number of times
    $ : end of regex line

    You can check more explanations about how to use regex expressions here : https://regex101.com/





    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
Page 180
Viewing Page: 181