I have a file with lines like this
variable = epms[something][something]
I need to find these lines by searching for epms.
Currently, I am trying this:
regex = re.compile('[.]*epms\[[.]*\]\[[.]*\][.]*')
However this doesn't find any match. What am I doing wrong?