How do you use a regex with a for loop in Python
example data
abc 1 xyz 0
abc 2 xyz 1
abc 3 xyz 2
How do you write regex for something like below
for i in range(1, 3):
re.match(abc +i xyz +(i-1))
|
|
This substitutes
another way to write it would be
|
|||
|
|
|
You can't make a single regex that includes math expressions which are evaluated at regex matching time. However, you can dynamically generate regex expressions, using the usual Python string formatting techniques:
This will print:
It might be a better idea to do as abyx suggested, and make a single regex pattern with several match groups, and do the math based on the substrings captured by the match groups:
This also will print:
|
|||
|
|