Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -318,6 +318,7 @@ def correct_dash_usage(text):
|
|
318 |
text = re.sub(r'(\d+)\s+миллиона\b|\bмиллионов\b', r'\1 млн', text, flags=re.IGNORECASE)
|
319 |
text = re.sub(r'(\d+)\s*млн\s*руб\.', r'\1 млн р', text, flags=re.IGNORECASE)
|
320 |
text = re.sub(r'(\d+)\s*р\b', r'\1 р', text)
|
|
|
321 |
|
322 |
def remove_specific_sentences(text):
|
323 |
sentences = re.split(r'(?<=[.!?])\s+', text)
|
|
|
318 |
text = re.sub(r'(\d+)\s+миллиона\b|\bмиллионов\b', r'\1 млн', text, flags=re.IGNORECASE)
|
319 |
text = re.sub(r'(\d+)\s*млн\s*руб\.', r'\1 млн р', text, flags=re.IGNORECASE)
|
320 |
text = re.sub(r'(\d+)\s*р\b', r'\1 р', text)
|
321 |
+
text = re.sub(r'Qr', 'QR', text)
|
322 |
|
323 |
def remove_specific_sentences(text):
|
324 |
sentences = re.split(r'(?<=[.!?])\s+', text)
|