Skip to content

added code for variant of --ignore-regex #3098

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
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)