Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions variant of--ignore-regex.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import re


def process_text(text, ignore_regex):
# Compile the regex pattern with the MULTILINE flag
pattern = re.compile(ignore_regex, re.MULTILINE)

# Use the findall method to identify matches in the text
matches = pattern.findall(text)

# Process the matches as needed (e.g., ignore or replace)
processed_text = pattern.sub("", text) # Remove the matched portions

return processed_text, matches


# Example usage
text = """Line 1: This is some text.
Line 2: This is another line.
Line 3: Here's more text.
"""

ignore_regex = r"Line \d+: This is another line\."

processed_text, matches = process_text(text, ignore_regex)

# Print the processed text and matched patterns
print("Processed Text:")
print(processed_text)

print("\nMatched Patterns:")
for match in matches:
print(match)