.*any Unicode character (except for line terminators), repeated any number of times
Voyagethe literal text Voyage (case sensitive) \:the literal : (5810 / 728 / 3A16)
\\the literal \ (9210 / 1348 / 5C16)
xathe literal text xa (case sensitive) 0{1}the literal 0 (4810 / 608 / 3016) , repeated exactly 1 time
\s+a Unicode whitespace character, repeated at least once
Group 1([0-9]{4}[A-Z]{1}) {4}matches exactly 4 characters from the set below:
0-9one character from 0 (4810) to 9 (5710)
{1}matches one character from the set below:
A-Zone character from A (6510) to Z (9010) (case sensitive)
.*any Unicode character (except for line terminators), repeated any number of times