AutoHotKey(오토핫키) 설명서 IfInString / IfNotInString
IfInString / IfNotInString
변수내로 지정 문자열이 있을지로 분기
IfInString, var, SearchString IfNotInString, var, SearchString
Parameters
인수명 | 설명 |
---|---|
var | 변수명 |
SearchString | 찾는 문자열 |
Remarks
공백 문자를 찾고 싶을 때는,%A_Space%(이)나%A_Tab%(을)를 사용하면 좋다.
이 커멘드의 후에는, 「,」(으)로 단락지어 조건에 일치했을 때에 실행시키고 싶은 커멘드를 기술할 수 있다.
이하의3개는 모두 올바르다.
IfInString, MyVar, abc Gosub, Process1 IfInString, MyVar, abc, Gosub, Process1 IfInString, MyVar, abc,{ Gosub, Process1 }
통상은 대문자 소문자를 구별하지 않는다.
StringCaseSense그리고 설정을 변경할 수 있다.
Related
StringCaseSense, IfEqual, Blocks, Else, if var is type
Example(s)
Haystack = abcdefghijklmnopqrs Needle = abc IfInString, Haystack, %Needle% { MsgBox, The string was found. return } else Sleep, 1
'AutoHotKey > Commands' 카테고리의 다른 글
AutoHotKey(오토핫키) 설명서 IfMsgBox (0) | 2014.08.14 |
---|---|
AutoHotKey(오토핫키) 설명서 If var is [not] type (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 If var [not] in values / If var [not] contains values (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 If(식) (0) | 2014.08.14 |
AutoHotKey(오토핫키) 설명서 IfExist / IfNotExist (0) | 2014.08.14 |