replace replace by sub

This commit is contained in:
Chrys 2019-08-29 17:55:19 +02:00
parent 6b6de57c9e
commit 1155103389

View File

@ -33,15 +33,14 @@ 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)
#resultText = resultText.replace(str(key),seperator + str(item) + seperator)
resultText = re.sub(str(key), seperator + str(item) + seperator, resultText)
return resultText
def usePunctuationDict(self, text, punctuationDict, punctuation):
resultText = str(text)
@ -53,7 +52,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