Jump to content

how to find a word in the string


ASut
 Share

Recommended Posts

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

Link to comment
Share on other sites

Try

ConsoleWrite(StringInStr("Testing string, string for testing","string") & @CRLF)

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.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 (NEW 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

 

Link to comment
Share on other sites

StringInStr

Checks if a string contains a given substring.

StringInStr("string", "substring" [, casesense [, occurrence [, start [, count]]]])

Parameters

string 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 sensitive
  • 2 = not case sensitive, using a basic/faster comparison
occurrence [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 Value

Success: Returns the position of the substring.

Failure: Returns 0 if substring not found.

@Error 0 - Normal operation

1 - Invalid "start" or "occurence" parameter given.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...