My input is--
Text = "My name is Alex , house no - 254456845 with mobile no. +91-11-22558845 and my account no. is - AB12569BF214558."
Now I want to use regex (re.findall) on my input text and get the expected output.
Expected Output= ( it contains both digits and alphabet and is always of length = 15 )
[ "AB12569BF214558" ]
please help