[Unicode chars] - add 1 more normalization for Unicode chars

This commit is contained in:
ivandrofly 2015-09-19 22:14:35 +01:00
parent 320e55e5fd
commit 2d3073c34c

View File

@ -3233,6 +3233,7 @@ namespace Nikse.SubtitleEdit.Forms
text = text.Replace("…", "..."); text = text.Replace("…", "...");
text = text.Replace('♪', '#'); text = text.Replace('♪', '#');
text = text.Replace('♫', '#'); text = text.Replace('♫', '#');
text = text.Replace("⇒", "=>");
// Spaces // Spaces
text = text.Replace('\u00A0', ' '); // No-Break Space text = text.Replace('\u00A0', ' '); // No-Break Space