반응형
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SetMouseDelay
- EnvAdd
- if(식)
- IfInString
- ControlSend
- 함수
- Var:=식
- EnvMult
- MouseClick
- SetControlDelay
- EnvSub
- SetEnv
- 식
- EnvSet
- SetTitleMatchMode
- 식의 설명
- autohotkey
- Menu
- IF (식)
- if
- StringGetPos
- Threads
- Blocks
- DetectHiddenWindows
- API
- ControlGetText
- 배열
- EnvDiv
- SetKeyDelay
- IfWinExist
Archives
- Today
- Total
목록comma (1)
ㄴrㅎnㅂrㄹrㄱi
숫자에 콤마 찍기
;------------------------------------------------------------- ; 숫자에 컴마 찍기 ;------------------------------------------------------------- FormatNumber(_number) { StringReplace _number, _number, - IfEqual ErrorLevel,0, SetEnv Sign,- Loop Parse, _number, . If (A_Index = 1) { len := StrLen(A_LoopField) Loop Parse, A_LoopField If (Mod(len-A_Index,3) = 0 and A_Index != len) x = %x%%A_LoopField%, Else..
AUTOHOTKEY/스크립트
2007. 10. 23. 15:34