sashtech commited on
Commit
d89cee9
·
verified ·
1 Parent(s): 1f394c5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -3
app.py CHANGED
@@ -39,9 +39,22 @@ def remove_redundant_words(text):
39
 
40
  # Function to fix spacing before punctuation
41
  def fix_punctuation_spacing(text):
42
- # Remove spaces before commas, periods, question marks, etc.
43
- #text = re.sub(r'\s+([,.\'!?:])', r'\1', text)
44
- return text
 
 
 
 
 
 
 
 
 
 
 
 
 
45
 
46
  # Function to fix possessives like "Earth's"
47
  def fix_possessives(text):
 
39
 
40
  # Function to fix spacing before punctuation
41
  def fix_punctuation_spacing(text):
42
+ # Split the text into words and punctuation
43
+ words = text.split(' ')
44
+ cleaned_words = []
45
+
46
+ # Define punctuation marks to check
47
+ punctuation_marks = {',', '.', "'", '!', '?', ':'}
48
+
49
+ for word in words:
50
+ # If the word ends with a punctuation mark, remove space before it
51
+ if cleaned_words and word and word[0] in punctuation_marks:
52
+ cleaned_words[-1] += word # Append punctuation to the last word
53
+ else:
54
+ cleaned_words.append(word) # Add word to the list
55
+
56
+ return ' '.join(cleaned_words).replace(' ,', ',').replace(' .', '.').replace(" '", "'") \
57
+ .replace(' !', '!').replace(' ?', '?').replace(' :', ':')
58
 
59
  # Function to fix possessives like "Earth's"
60
  def fix_possessives(text):