Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Inicializar UByteArray desde String con una funcion
- * Antonio Villanueva Segura
- */
- fun main() {
- var msg:String ="abcdefg" //Cadena de texto a transformar en ByteArray
- //Genero el UByteArray con una funcion desde un String
- val arrayGenerado = UByteArray(msg.length){i -> transforma(msg,i)}
- for (elem in arrayGenerado){//Lectura del UByte Array generado
- println (elem)
- }
- }
- //Recibe la cadena de texto con el indice deseado y retorna un UByte
- fun transforma ( msg:String , index:Int):UByte{
- return msg[index].code.toUByte()
- }
- //Recibe la cadena de texto con el indice deseado y retorna un Byte
- /*
- fun transforma ( msg:String , index:Int):Byte{
- return msg[index].toByte()
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement