I am looking for a string in the following format:
"5\'x5\'-ClimateControlled(xxxxxxx)IndooraccessUpperLevelElevatoraccess"
Where the (xxxxxxx) wildcard portion can be any combination of numbers, letters, or symbols. I have found that if the wildcard portion is a number, the following works:
pattern = '5\'x5\'-ClimateControlled.IndooraccessUpperLevelElevatoraccess'
regex = re.compile(pattern)
regex.findall(raw)
However, sometimes the wildcard portion is a string or symbols, in which case the search returns nothing. What is the syntax for a true wildcard search where the portion in the middle can be anything?