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