#include <StringConstants.au3> ; to declare the Constants of StringRegExp
#include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate
Local $sRegex = "(?m)(.*)(\s<name.*)"
Local $sString = "2016-07-01 02:50:35 <name redacted> hey" & @CRLF & _
"2016-07-01 02:51:26 <name redacted> waiting for plane to Edinburgh" & @CRLF & _
"2016-07-01 02:51:45 <name redacted> thinking about my boo" & @CRLF & _
"2016-07-01 02:52:07 <name reda> nothing crappy has happened, not really" & @CRLF & _
"2016-07-01 02:52:20 <name redac> plane went by pretty fast, didn't sleep" & @CRLF & _
"2016-07-01 02:54:08 <name r> no idea what time it is or where I am really" & @CRLF & _
"2016-07-01 02:54:17 <name redacted> just know it's london" & @CRLF & _
"2016-07-01 02:56:44 <name redacted> you are probably asleep" & @CRLF & _
"2016-07-01 02:58:45 <name redacted> I hope fish was fishy in a good eay" & @CRLF & _
"2016-07-01 02:58:56 <name redacted> 💘" & @CRLF & _
"2016-07-01 02:59:34 <name redacted> 🍑🍑🍑" & @CRLF & _
"2016-07-01 03:02:48 <name > British security is a little more rigorous..."
Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYGLOBALFULLMATCH)
Local $aFullArray[0]
For $i = 0 To UBound($aArray) -1
_ArrayConcatenate($aFullArray, $aArray[$i])
Next
$aArray = $aFullArray
; 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