Jump to content

Recommended Posts

Posted

How to convert this script to autoit

alert(convert_utf8totext("4DE1BAA163204CE1BB87205468E1BAA36F"));
function Utf8ArrayToStr(array) {
    var out, i, len, c;
    var char2, char3;

    out = "";
    len = array.length;
    i = 0;
    while (i < len) {
        c = array[i++];
        switch (c >> 4)
        {
            case 0:
            case 1:
            case 2:
            case 3:
            case 4:
            case 5:
            case 6:
            case 7:
                // 0xxxxxxx
                out += String.fromCharCode(c);
                break;
            case 12:
            case 13:
                // 110x xxxx   10xx xxxx
                char2 = array[i++];
                out += String.fromCharCode(((c & 0x1F) << 6) | (char2 & 0x3F));
                break;
            case 14:
                // 1110 xxxx  10xx xxxx  10xx xxxx
                char2 = array[i++];
                char3 = array[i++];
                out += String.fromCharCode(((c & 0x0F) << 12) |
                        ((char2 & 0x3F) << 6) |
                        ((char3 & 0x3F) << 0));
                break;
        }
    }

    return out;
}
function convert_utf8totext(str) {
    var length = str.length;
    var array = new Uint8Array(length / 2);
    for (i = 0; i < length; i += 2)
    {
        array[i / 2] = '0x' + str.substr(i, 2);
    }

    return Utf8ArrayToStr(array);
}

 

Posted

No idea about JavaScript but I'm pretty sure if you know JavaScript all you have to do is to read AutoIT Help file.

In the other hand if you don't know JavaScript then you have to read JavaScript Help File and also AutoIT help file and you can do it.

Regards
Alien.
 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...