i'm trying to capture a group (in notepad++) of digits.
Example:
StartOfLineCharacters[0..4 repeating groups of 32 digits and spaces]
How can i find all repeating groups starting with 0000 whatever the position of the group
Example: StartOfLineCharacters0001123456789012345678901234567800001234568901234567890123456780100123456789012345678901234567800001234567890123456789012345678
in this specific example I have 4 groups (groups starting in bold) where 2 groups start with 0000. It could be that not all groups are filled with characters.
I want to find all rows in a text file that contain 1 or more groups starting with these four zero's.
Hopefully someone can help me. I'm not new to regex but this is the first time i'm searching in repeating patterns and I want to capture all lines in one single regex (for future purposes). If it was for a single time I could use 4 regexes.
Kind regards