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