folks, I am working on using Python re to parse a configuration file that contains lines like this: [VAR: abc123] ... ...
.CSIIND~~~LOCAL~~~I4~~~0~~~
[VAR: def234]
...
<bunch of stuff>
...
.CSIIND~~~LOCAL~~~I4~~~1~~~
...
I'm trying to build up to extracting something like this:
varname / CSIIND
abc123 / 0
def234 / 1
... ...
I don't have a lot of regex background, so I'm probably a bit slow on this, but I've been seeking out every tutorial and resource I can find, to no avail.
Please help me, at least with directional suggestions! I don't mean to ask for finished code!
The farthest I have gotten is this regex:
r"^[VAR:.+?].+?CSIIND",
which at least matches as many times as I expect it to, but I can't get it to match the number