How to use ascII code in AutoHotkey-AutoHotkey tutorial

Time: 2021-09-06Source: Huajun Software TutorialAuthor: monster

Recently, many friends have said that they are not sure how AutoHotkey uses asciII code? So today I will bring you the method of using asciII code in AutoHotkey. Friends in need can come and take a look. I hope it can help you all. .

​​​View ASCII code:

Asc(String): Returns the ASCII code of the first character in String (a number between 1 and 255). If String is empty, 0 is returned.

How to view/use ascii code with autohotkey

Use ASCII code:

Chr(Number): Returns a single character corresponding to the ASCII code represented by Number.

How to view/use ascii code with autohotkey

Determine whether the character is a lowercase letter a-z (yes)

How to view/use ascii code with autohotkey
How to view/use ascii code with autohotkey

Determine whether the character is a lowercase letter a-z (no)

How to view/use ascii code with autohotkey
How to view/use ascii code with autohotkey

The above is the method of using asciII code in AutoHotkey brought by the editor. Friends who don’t know how to do it should hurry up and learn it.

Related articles更多>>

Popular recommendations