In Console windows replaying manual keystrokes works. Try
Code:
!c::Send !{Space}ek{Down 3}{Right 26}+{Right 11}{Enter}
It assumes you know the position of the string on screen (where you navigate with the down and right arrow keys), which is copied to the ClipBoard. You could process the clipboard in your script. If you don't know the position, you can get the text from the whole window with
Code:
!c::Send !{Space}ek+{PgDn}+{Right 80}{Enter}
(assuming an 80 char wide window). Then you can search for the string in the text in the clipboard.