mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 19:52:48 +01:00
Fix latest batch unicode remove commit
(unicode space to normal space)
This commit is contained in:
parent
4ac6917228
commit
450d0facdb
@ -1121,8 +1121,8 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
paragraph.Text = paragraph.Text.Replace("\u202C", string.Empty);
|
||||
paragraph.Text = paragraph.Text.Replace("\u202D", string.Empty);
|
||||
paragraph.Text = paragraph.Text.Replace("\u202E", string.Empty);
|
||||
paragraph.Text = paragraph.Text.Replace("\u00C2", string.Empty); // fixed remove space char1
|
||||
paragraph.Text = paragraph.Text.Replace("\u00A0", string.Empty); // fixed remove space char2
|
||||
paragraph.Text = paragraph.Text.Replace("\u00C2", " "); // fixed remove space char1 (no break space)
|
||||
paragraph.Text = paragraph.Text.Replace("\u00A0", " "); // fixed remove space char2 (no break space)
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user