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