$txt="1.txt"
FileOpen($txt,1)
Global $word=FileRead($txt)
Global $a=StringRegExpReplace($word,'(?s).*?(NVM 01234)\h+(\H+).*?(Rotation)\h+\H+\h+(\H+).*?(X Tilt)\h+\H+\h+(\H+).*?(Y Tilt)\h+\H+\h+(\H+).*','\1:\2'&@CRLF&'\3:\4'&@CRLF&'\5:\6'&@CRLF&'\7:\8')
MsgBox(0,"",$a)
$txt="1.txt"
FileOpen($txt,1)
Global $word=FileRead($txt)
Global $a=StringRegExpReplace($word,'(?s).*?(NVM 01234)\s+([^\s]+).*(Rotation)\s+[^\s]+\s+([^\s]+).*?(X Tilt)\s+[^\s]+\s+([^\s]+).*?(Y Tilt)\s+[^\s]+\s+([^\s]+).*','\1:\2'&@CRLF&'\3:\4'&@CRLF&'\5:\6'&@CRLF&'\7:\8')
MsgBox(0,"",$a)