I have some trouble with my code. In "line1 and line2" before the text in file have some spaces, how i can ignore them?
Ex.:
<server xmlns="urn:jboss:domain:1.2">
</handlers>
</root-logger>
</subsystem>
<subsystem xmlns="urn:jboss:domain:naming:1.1">
<bindings>
And these spaces interfere with code to find line1 and line2.
Below is my code
with open("xxx", "r+") as f:
a = [x.rstrip() for x in f]
index = 1
line1 = '<subsystem xmlns="urn:jboss:domain:naming:1.1">'
line2 = "<bindings>"
for item in a:
if item.startswith(line1 and line2):
a.insert(index, '<simple name="java:global/nbs/app/portal/config/routes"\n\tvalue="C:\\nbs\\app\\portal\\routes.properties"/>')
break
index += 1
f.seek(0)
for line in a:
f.write(line + "\n")