Hello everyone^^ I am somewhat new to AutoIt so please bear with me. I always thought that I was able to read, but neither helpfile nor internet search were able to explain the following behaviour to me: ConsoleWrite(StringInStr("hey<a>ho!", "<a>") & @CRLF)
ConsoleWrite(StringInStr("hey<a>ho!", "<a>", Default, Default, Default) & @CRLF)
ConsoleWrite(StringInStr("hey<a>ho!", "<a>", Default, Default, Default, Default) & @CRLF)The console output is My aim was to use the position parameter and so I did. Took me quite a while to find out what part of my code was causing the unexpected results. For now, I am working around this problem with the construction given in the helpfile: StringInStr(StringMid($string, $start), $substring), but this obviously isn't now how it's meant to be. Any help with this is greatly appreciated