I have a text file with text that looks like below
Format={ Window_Type="Tabular", Tabular={ Num_row_labels=10 } }
I need to look for Num_row_labels >=10 in my text file. How do I do that using Python 3.2 regex? Thanks.
|
I have a text file with text that looks like below
I need to look for Num_row_labels >=10 in my text file. How do I do that using Python 3.2 regex? Thanks. |
|||
|
|
Use:
The
This will allow you to easily change the value of your threshold, unlike the answers that do everything in the regex. Additionally, I believe this is more readable in that it is very obvious that you are comparing a value against 10, rather than matching a nonzero digit in the regex followed by at least one other digit. What the code above does is ask for the 1st group that was matched ( |
|||||
|
|
Assume that the data is formatted as above, and there is no leading 0's in the number:
A more liberal regex which allows arbitrary spaces, still assume no leading 0's:
An even more liberal regex which allows arbitrary spaces, and allow leading 0's:
If you need to capture the numbers, just surround |
|||||||
|
|
The regex is Now you can use the |
|||||
|
|
the re looks like:
Example of usage:
The regular expression
Before these digits can be any other digits ( |
|||||||||||
|