메뉴 건너뛰기

Atachment
첨부 '2'
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

For the sake of brevity and clarity, I implemented commonly used ECMAScript encoding functions, including UTF-8 encoding and decoding, in AHK code

 

 

download for autohotkey v1.x : ecmascript.ahk

download for autohotkey v2.x : ecmascript.ahk

 

Usage :

 

#include <ecmascript>

uri := "https://www.google.co.kr/search?q=kt+고객센터+전화번호"
encoded := ECMAScript.encodeURI(uri)
decoded := ECMAScript.decodeURI(encoded)
escaped := ECMAScript.escape(uri)
unescaped := ECMAScript.unescape(escaped)

 

 

 


  1. ECMAScript encodeURI/decodeURI, escape/unescape function spec implementations in autohotkey v1, v2

    Date2023.04.16 Byddart Views1237
    Read More
  2. Autohotkey WinAPI Common Controls Example

    Date2021.01.22 Byddart Views2869
    Read More
  3. Autohotkey MDI Application Example

    Date2020.12.27 Byddart Views1376
    Read More
  4. WebView2 example for Autohotkey v2, v1

    Date2020.12.13 Byddart Views1975
    Read More
  5. Notepad++에서 콘솔출력과 소스 연동하기

    Date2020.11.14 Byddart Views1444
    Read More
  6. Notepad++에서 Autohotkey 개발환경 만들기

    Date2020.11.12 Byddart Views3337
    Read More
Board Pagination Prev 1 Next
/ 1