0w0

[autohotkeyBase] 07. 이스케이프 (`) 본문

Coding/Autohotkey

[autohotkeyBase] 07. 이스케이프 (`)

0w0 2020. 1. 13. 16:35
728x90
반응형

● 이스케이프 시퀀스(`문자)

- 이스케이프 스퀀스는 ` 뒤로 문자를 붙여서 써주면됨

- 어떠한 경우 사용하는가? 기호를 문자처럼 호출 할 때와 특수한 기능(개행)하는 기호를 호출 할 떄

%  : 변수호출 기호

,    : 명령매개변수구분 기호

`    : 이스케이프 기호

F1::
var:=21
msgbox, %var% ````
return

 

● 개행

- `n

F1::
msgbox, hihello
return
개행 전
F2::
msgbox, hi`nhello
return
개행 후

 

● 탭

- `t

F1::
msgbox, hi`thello
return
tab 수행

 

728x90
반응형
Comments