Jump to content

Recommended Posts

Posted

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

Posted

Try

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

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

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.

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
  • Recently Browsing   0 members

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