You could try the below pattern to match XXXX.XXXX.XXXX
,
\b[a-z0-9]{4}(?:\.[a-z0-9]{4}){2}\b
I assumed that the Hardware address must contains lowercase letters and numbers.
0
solved Regex pattern for parsing this test file?
You could try the below pattern to match XXXX.XXXX.XXXX
,
\b[a-z0-9]{4}(?:\.[a-z0-9]{4}){2}\b
I assumed that the Hardware address must contains lowercase letters and numbers.
0
solved Regex pattern for parsing this test file?