AutoHotKey(오토핫키) 설명서 IfInString / IfNotInString

Posted by 발전소장
2014. 8. 14. 01:18 AutoHotKey/Commands

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