BCH regex was recently updated (in the API) to: "address_regex": "^([13][a-km-zA-HJ-NP-Z1-9]{25,34})|^((bitcoincash:)?(q|p)[a-z0-9]{41})|^((BITCOINCASH:)?(Q|P)[A-Z0-9]{41})$"
Is this a Segwit thing?
I understand it's now saying addresses may start with "bitcoincash:" or "BITCOINCASH:", but that's a thing, or is it some internal Coinbase designation?
let me break it down for you so there are three regex in it, as after new additions now all three are accepted as valid BCH addresses now
Breaking it down
First type of addresses
address will start with L, M or 3, {1} defines that only match one character in square bracket
cannot have l (small el), I (capital eye), O (capital O) and 0 (zero)
can be 27 to 34 characters long, remember we already checked the first character to be 1 or 3, so remaining address will be 26 to 33 characters long
second type of address
will start with bitcoincash:
followed by q or p
can only have lower case letters and numbers
will be 54 characters long, we already checked first 11 characters to be bitcoincash: followed by another character to be Q or p, so remaining address will be 41 characters long
third type of address
will start with BITCOINCASH:
followed by Q or P
can only have lower case letters and numbers
will be 54 characters long, we already checked first 11 characters to be BITCOINCASH: followed by another character to be Q or P, so remaining address will be 41 characters long