i have an example string like the one below
http://rp-F083B8.local/?mac=00:26:32:F0:83:B8&nav=4702&hw=STEM_125-14_v1.0
from this text i need to extract the mac address from the middle, but without the semicolon in-between.
i have managed to do this in 2 expresion like this:
(\w{2})[:](\w{2})[:](\w{2})[:](\w{2})[:](\w{2})[:](\w{2})
==> 00:26:32:F0:83:B8
and another /\W/
applied to the previous result ==> 002632F083B8
but the requirement is to do this in just one expression. is there another way to do this in just expression? thanks,