Merge branch 'regexpunct'

This commit is contained in:
Chrys
2019-10-22 00:27:24 +02:00
2 changed files with 32 additions and 26 deletions

View File

@ -33,15 +33,16 @@ class punctuationManager():
del currAllPunctNone[ord(char)]
except:
pass
return text.translate(currAllPunctNone)
return text.translate(currAllPunctNone)
def useCustomDict(self, text, customDict, seperator=''):
resultText = str(text)
if customDict:
for key,item in customDict.items():
resultText = resultText.replace(str(key),seperator + str(item) + seperator)
try:
resultText = re.sub(str(key), seperator + str(item) + seperator, resultText)
except:
resultText = resultText.replace(str(key),seperator + str(item) + seperator)
return resultText
def usePunctuationDict(self, text, punctuationDict, punctuation):
resultText = str(text)
@ -53,7 +54,7 @@ class punctuationManager():
if self.env['runtime']['settingsManager'].getSetting('general', 'respectPunctuationPause') and \
len(key) == 1 and \
key in "',.;:?!":
resultText = resultText.replace(str(key),' ' +str(item) + str(key) + ' ')
resultText = resultText.replace(str(key),' ' +str(item) + str(key) + ' ')
else:
resultText = resultText.replace(str(key),' ' +str(item) + ' ')
return resultText