What does the% operator do for strings in InstallScript?

I am looking through InstallScript code.

With integers, I use the% operator modulo. I am not familiar with it in the lines.

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

What is this reduction?

I understand that this should be simple for Google, but I have not found any luck yet.

+4
source share
1 answer

In the InstallScript Reference Guide :

 Find String Operator (%) Locates a substring in another string 
+3
source

Source: https://habr.com/ru/post/1441641/


All Articles