문제

I'm looking at some InstallScript code.

With integers, I'm used to the % operator being modulo. I'm not familiar with it in strings.

if (szSomeString % szSomeOtherString) then
   // do something
endif;

What is this shorthand for?

I realize this should be braindead simple to Google for but I haven't found any luck yet.

도움이 되었습니까?

해결책

Per the InstallScript Reference Guide:

Find String Operator (%) Locates a substring in another string
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top