text = ' My uncle is admitted in the hospital. the address of the hospital is \n Apollo Health City Campus, Jubilee Hills, Hyderabad - 500 033. '
now i am using this as my regex expression but just getting 'Hills' and not getting the required output.
re.findall(r'(\w\S+\s+)(?=Hyderabad){3}'
My desired output is - ' Apollo Health City Campus, Jubilee Hills, Hyderabad - 500 033. '
I want to write a regex expression which can help me extract 3 to 4 strings prior to the city name like 'Hyderabad' in this case, and whether special characters are presend or not present in the raw string.