ASut Posted September 19, 2010 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
water Posted September 19, 2010 Posted September 19, 2010 TryConsoleWrite(StringInStr("Testing string, string for testing","string") & @CRLF) My UDFs and Tutorials: Reveal hidden contents UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Varian Posted September 19, 2010 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.
ASut Posted September 19, 2010 Author Posted September 19, 2010 (edited) Thanks all for helping me to slove this problem Edited September 19, 2010 by ASut
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now