logic for ReplaceWords that have hardspaces

This commit is contained in:
John Jenko 2010-06-04 19:27:34 +00:00
parent 0d12eeddfb
commit 4b8591150f

View File

@ -1069,6 +1069,9 @@ namespace Volian.Controls.Library
} }
} }
//Console.WriteLine("--- Before '{0}'", Text);
Text = Text.Replace(@"\xA0", @"\u160?"); //replace hard space
//Console.WriteLine("--- After '{0}'", Text);
return Text; return Text;
} }
#endregion #endregion