#include <StringConstants.au3> ; to declare the Constants of StringRegExp
#include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate
Local $sRegex = "(?s)Host\s+host2\s.*?IdentityFile\s+(?<identity>\S+)"
Local $sString = "Host host1" & @CRLF & _
" HostName 192.168.1.2" & @CRLF & _
" User user" & @CRLF & _
" Port 22" & @CRLF & _
" IdentityFile ~/.ssh/host1" & @CRLF & _
"" & @CRLF & _
"Host host2" & @CRLF & _
" HostName 192.168.1.3" & @CRLF & _
" User user" & @CRLF & _
" Port 22" & @CRLF & _
" IdentityFile ~/.ssh/host2" & @CRLF & _
"" & @CRLF & _
"Host host3" & @CRLF & _
" HostName 192.168.1.4" & @CRLF & _
" User user" & @CRLF & _
" Port 22" & @CRLF & _
" IdentityFile ~/.ssh/host3"
Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYFULLMATCH)
; Present the entire match result
_ArrayDisplay($aArray, "Result")
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm