Skip to content
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

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

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):

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.8

Ruff (ANN201)

variant of--ignore-regex.py:4:5: ANN201 Missing return type annotation for public function `process_text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.8

Ruff (ANN001)

variant of--ignore-regex.py:4:18: ANN001 Missing type annotation for function argument `text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.8

Ruff (ANN001)

variant of--ignore-regex.py:4:24: ANN001 Missing type annotation for function argument `ignore_regex`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.9

Ruff (ANN201)

variant of--ignore-regex.py:4:5: ANN201 Missing return type annotation for public function `process_text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.9

Ruff (ANN001)

variant of--ignore-regex.py:4:18: ANN001 Missing type annotation for function argument `text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.9

Ruff (ANN001)

variant of--ignore-regex.py:4:24: ANN001 Missing type annotation for function argument `ignore_regex`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.10

Ruff (ANN201)

variant of--ignore-regex.py:4:5: ANN201 Missing return type annotation for public function `process_text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.10

Ruff (ANN001)

variant of--ignore-regex.py:4:18: ANN001 Missing type annotation for function argument `text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.10

Ruff (ANN001)

variant of--ignore-regex.py:4:24: ANN001 Missing type annotation for function argument `ignore_regex`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.11

Ruff (ANN201)

variant of--ignore-regex.py:4:5: ANN201 Missing return type annotation for public function `process_text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.11

Ruff (ANN001)

variant of--ignore-regex.py:4:18: ANN001 Missing type annotation for function argument `text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.11

Ruff (ANN001)

variant of--ignore-regex.py:4:24: ANN001 Missing type annotation for function argument `ignore_regex`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.10 no-toml

Ruff (ANN201)

variant of--ignore-regex.py:4:5: ANN201 Missing return type annotation for public function `process_text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.10 no-toml

Ruff (ANN001)

variant of--ignore-regex.py:4:18: ANN001 Missing type annotation for function argument `text`

Check failure on line 4 in variant of--ignore-regex.py

View workflow job for this annotation

GitHub Actions / 3.10 no-toml

Ruff (ANN001)

variant of--ignore-regex.py:4:24: ANN001 Missing type annotation for function argument `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)
Loading