Jump to content

Getting Word from Title


sobert
 Share

Go to solution Solved by JLogan3o13,

Recommended Posts

  • Moderators
  • Solution

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!

Link to comment
Share on other sites

  • Moderators

$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!

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