My current regex matches the first number 703205749 because it finds the matching number inside the string, but how can I skip the number if it doesn't start with a specific number/letter.
regex = (2|7|8|1)\d{7,12}
string = 'first number 32703205749, second number 714525596'
Should match only 714525596