So I am trying to search for a certain string which for example could be: process.control.timeout=30, but the 30 could be anything. I tried this:
for line in process:
line = line.replace("process.control.timeout", "process.control.timeout=900")
outFile.write(line)
But this will bring me back process.control.timeout=900=30. I have a feeling I will need to use regex with a wildcard? But I'm pretty new to python.