Is there any function like php mb_convert_encodingthat can convert encoding to another?
mb_convert_encoding
I want to convert utf-8 text sent in the input field inside the flash to the encoding iso-8859-7.
Yup, try flash.utils.ByteArray::writeMultiByte():
flash.utils.ByteArray::writeMultiByte()
var bytes:ByteArray = new ByteArray(); bytes.writeMultiByte("Δ", "iso-8859-7"); // Capital delta assertEquals(0xc4, bytes[0]);
Source: https://habr.com/ru/post/1699463/More articles:Using TryParse to set object property values - c #stop Ms Excel automatically formatting numeric strings as numbers - formattingWarm standby SQL server / web server - sql-serverIterate though generic list in C # - genericsSQL Server xp_cmdshell - sql-serverЛучший способ выбрать из миллионов строк в Oracle DB - javaMemento implementation on .NET. - designWindowsPrincipal.IsInRole () does not return the expected result - security.NET ODBC DataProvider never connects through Transform ODBC driver - .netIs it a bad idea to get rid of mx: in your Flex code? - flexAll Articles