Jump to content

Getting Word from Title


Go to solution Solved by JLogan3o13,

Recommended Posts

Posted

Can someone tell me if it is possible to get the i.e. the 4th word of a window's title?

I need to create something where the script will only run if the 4th word in the title is i.e. "Test"

Thanks in advance.

  • Moderators
  • Solution
Posted (edited)

For the most part, yes you can. Given a window title of My Awesome Notepad Example.txt, you could do something like this:

$sTitle = WinGetTitle("[CLASS:Notepad]", "") ;get the full title
$aSplit = StringSplit($sTitle, " ") ;split the title by spaces
   ConsoleWrite($aSplit[4] & @CRLF) ;get the fourth element

If you're unable to get the class of the window, try using text inside the window (the second parameter in WinGetTitle).

Edited by JLogan3o13

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

  • Moderators
Posted

$aSplit is a 1D array, so it would simply be $aSplit[1], $aSplit[2], etc.

If you want to write multiple indexes, you would write it like so: $aSplit[3] & $aSplit[4]

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

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...