\(*the literal ( (4010 / 508 / 2816) , repeated any number of times
\w{3}any word character, repeated exactly 3 times
Character Class[-_~\s*\.]*? *?matches any number of characters from the set below:
-the literal - (4510 / 558 / 2D16)
_the literal _ (9510 / 1378 / 5F16)
~the literal ~ (12610 / 1768 / 7E16)
\sany whitespace character
*the literal * (4210 / 528 / 2A16)
\.the literal . (4610 / 568 / 2E16)
Group 2(\d{1,}|\d*.\d*.\d*) \d{1,}a digit, repeated at least once
2nd Alternative\d*.\d*.\d* \d*a digit, repeated any number of times
.any character (except for line terminators)
\d*a digit, repeated any number of times
.any character (except for line terminators)
\d*a digit, repeated any number of times
Character Class[-_\s.~]*? *?matches any number of characters from the set below:
-the literal - (4510 / 558 / 2D16)
_the literal _ (9510 / 1378 / 5F16)
\sany whitespace character
.the literal . (4610 / 568 / 2E16)
~the literal ~ (12610 / 1768 / 7E16)
Group 3(FTP|IMG|SCR|LIV|TVU) FTPthe literal text FTP (case sensitive) IMGthe literal text IMG (case sensitive) SCRthe literal text SCR (case sensitive) LIVthe literal text LIV (case sensitive) TVUthe literal text TVU (case sensitive) .?optionally matches any character (except for line terminators)
-?optionally matches the literal - (4510 / 558 / 2D16)
\s?optionally matches any whitespace character
\w{3}any word character, repeated exactly 3 times
.any character (except for line terminators)
\s?optionally matches any whitespace character
-?optionally matches the literal - (4510 / 558 / 2D16)
_?optionally matches the literal _ (9510 / 1378 / 5F16)
~?optionally matches the literal ~ (12610 / 1768 / 7E16)
\.?optionally matches the literal . (4610 / 568 / 2E16)
\d*a digit, repeated any number of times
.any character (except for line terminators)
\s?optionally matches any whitespace character
-?optionally matches the literal - (4510 / 558 / 2D16)
~?optionally matches the literal ~ (12610 / 1768 / 7E16)
_?optionally matches the literal _ (9510 / 1378 / 5F16)
\.?optionally matches the literal . (4610 / 568 / 2E16)
.*any character (except for line terminators), repeated any number of times
g modifier: global. Finds all matches instead of stopping after the first
m modifier: multiline. Causes ^ and $ to match the start and end of each line, not only the start and end of the string