Is there any alternative to string.Normalize() in WinRT? I want to simply remove accents from input strings using this approach, but I cannot find anywhere this method in WinRT.
相关问题
- Inheritance impossible in Windows Runtime Componen
- Replacing or recreating a file in Windows 8 RT kee
- Draw waveform from MP3 stream in C# on WinRT
- how to disable caching HTTP GET in metro app, I am
- ListView in a metro app does not get its vertical
相关文章
- Show flyout using BottomAppBar
- New Windows Application - What language?
- Get English exception message instead of local lan
- How to remove an element from an IGrouping
- Exception when reading text from the file using Fi
- HttpUtility.HtmlDecode in WinRT
- libxml2 missing for nokogiri gem on Windows 8 x64
- Building Windows 8 Metro App on Windows 7 with Vis
I've discovered here quick and short solution, that works just fine in WinRT:
You will not find any alternative to String.Normalize in WinRT because it is available as part of the .NET Core Profile that is available to Metro style apps. Docs. If you are using C++, see this question.