ASut 0 Posted September 19, 2010 Hi, Is there a function in Autoit can let us to find out a word in the string and return the position of frist appear,which like the function FIND() in excel? e.g $txt="Testing string, string for testing" $word="string" return:9 Share this post Link to post Share on other sites
water 2,387 Posted September 19, 2010 TryConsoleWrite(StringInStr("Testing string, string for testing","string") & @CRLF) My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2020-10-10 - Version 1.5.2.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2020-12-15 - Version 1.6.3.1) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (2020-06-27 - Version 1.3.2.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
Varian 8 Posted September 19, 2010 StringInStr Checks if a string contains a given substring.StringInStr("string", "substring" [, casesense [, occurrence [, start [, count]]]])Parametersstring The string to evaluate. substring The substring to search for. casesense [optional] Flag to indicate if the operations should be case sensitive.0 = not case sensitive, using the user's locale (default)1 = case sensitive2 = not case sensitive, using a basic/faster comparisonoccurrence [optional] Which occurrence of the substring to find in the string. Use a negative occurrence to search from the right side. The default value is 1 (finds first occurrence). start [optional] The starting position of the search. count [optional] The number of characters to search. This effectively limits the search to a portion of the full string. See remarks. Return ValueSuccess: Returns the position of the substring. Failure: Returns 0 if substring not found. @Error 0 - Normal operation 1 - Invalid "start" or "occurence" parameter given. Share this post Link to post Share on other sites
ASut 0 Posted September 19, 2010 (edited) Thanks all for helping me to slove this problem Edited September 19, 2010 by ASut Share this post Link to post Share on other sites