Ocr fix rules: fix for weird Unicode comma (#x201A) - thx djc :)

This commit is contained in:
Nikolaj Olsson 2016-11-22 16:39:45 +01:00
parent f8967d7feb
commit 2bcb0e54d4

View File

@ -363,6 +363,7 @@ namespace Nikse.SubtitleEdit.Logic.Ocr
text = text.Replace("fi", "fi"); // fb01
text = text.Replace("fl", "fl"); // fb02
text = text.Replace('ν', 'v'); // NOTE: first 'v' is a special unicode character!!!!
text = text.Replace('', ','); // #x201A (SINGLE LOW-9 QUOTATION MARK) to plain old comma
}
text = ReplaceWordsBeforeLineFixes(text);