반응형
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
- IfWinExist
- ControlSend
- SetEnv
- DetectHiddenWindows
- EnvSet
- if(식)
- Blocks
- IF (식)
- StringGetPos
- 배열
- EnvSub
- IfInString
- autohotkey
- EnvDiv
- if
- MouseClick
- SetControlDelay
- EnvAdd
- EnvMult
- Threads
- SetKeyDelay
- Var:=식
- 식
- ControlGetText
- Menu
- 식의 설명
- API
- SetTitleMatchMode
- 함수
- SetMouseDelay
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